[issue39668] segmentation fault on calling __reversed__()

2020-02-18 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: No problem, closing it as duplicate of issue38525. -- resolution: -> duplicate stage: -> resolved status: open -> closed superseder: -> Strange reversed dict behavior ___ Python tracker

[issue39668] segmentation fault on calling __reversed__()

2020-02-18 Thread Grzegorz Krasoń
Grzegorz Krasoń added the comment: I confirm. 3.8.1 is fixed. Thank you and sorry for bothering. -- ___ Python tracker ___ ___ Pytho

[issue39668] segmentation fault on calling __reversed__()

2020-02-18 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Can you please try and update to 3.8.1? It should be fixed there. -- ___ Python tracker ___ ___

[issue39668] segmentation fault on calling __reversed__()

2020-02-18 Thread Grzegorz Krasoń
Grzegorz Krasoń added the comment: Python 3.8.0 (default, Oct 23 2019, 18:51:26) [GCC 9.2.0] on linux Linux anarchy 4.19.91-1-lts #1 SMP Sat, 21 Dec 2019 16:34:46 + x86_64 GNU/Linux Intel(R) Core(TM) i5-6200U CPU @ 2.30GHz -- ___ Python tracker

[issue39668] segmentation fault on calling __reversed__()

2020-02-17 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: This could be fixed with 24dc2f8c56697f9ee51a4887cf0814b6600c1815 issue38525 ➜ cpython git:(24dc2f8c56) ./python.exe -c 'list((lambda: None).__annotations__.__reversed__())' ➜ cpython git:(24dc2f8c56) git checkout HEAD~1 Previous HEAD position was

[issue39668] segmentation fault on calling __reversed__()

2020-02-17 Thread Raymond Hettinger
Raymond Hettinger added the comment: This works fine for me on macOS using the python.org 64-bit build. What are you using? -- nosy: +rhettinger ___ Python tracker ___ __

[issue39668] segmentation fault on calling __reversed__()

2020-02-17 Thread Grzegorz Krasoń
New submission from Grzegorz Krasoń : This causes segmentation fault: list((lambda: None).__annotations__.__reversed__()) -- components: Interpreter Core messages: 362164 nosy: Grzegorz Krasoń priority: normal severity: normal status: open title: segmentation fault on calling __reversed