[issue46374] Assertion failed in ceval.c

2022-03-07 Thread Kumar Aditya
Change by Kumar Aditya : -- resolution: -> fixed stage: -> resolved status: pending -> closed ___ Python tracker ___ ___

[issue46374] Assertion failed in ceval.c

2022-01-30 Thread Erlend E. Aasland
Erlend E. Aasland added the comment: Did GH-30633 fix this? Is there further work to be done? -- nosy: +erlendaasland status: open -> pending ___ Python tracker ___

[issue46374] Assertion failed in ceval.c

2022-01-17 Thread Mark Shannon
Change by Mark Shannon : -- priority: normal -> release blocker ___ Python tracker ___ ___ Python-bugs-list mailing list

[issue46374] Assertion failed in ceval.c

2022-01-14 Thread Mark Shannon
Mark Shannon added the comment: I can reproduce this on linux. The problem is that when closing a generator that has not started, the frame may not be in a valid state (hence the assertion failure). This should be fixed by implementing

[issue46374] Assertion failed in ceval.c

2022-01-14 Thread Kumar Aditya
Change by Kumar Aditya : -- nosy: +Mark.Shannon ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46374] Assertion failed in ceval.c

2022-01-14 Thread Kumar Aditya
Kumar Aditya added the comment: Tested commit is 7c770d3350813a82a639fcb3babae0de2b87aaae -- ___ Python tracker ___ ___

[issue46374] Assertion failed in ceval.c

2022-01-14 Thread Kumar Aditya
New submission from Kumar Aditya : The following code causes Assertion failed on Windows 11 import cProfile def test(): import sys import dis with cProfile.Profile() as p: test() Error: ❯ ./python.bat main.py Running Debug|x64 interpreter... Assertion failed: frame->f_lasti >=

[issue46374] Assertion failed in ceval.c

2022-01-14 Thread Kumar Aditya
Change by Kumar Aditya : -- versions: +Python 3.11 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue46374] Assertion failed in ceval.c

2022-01-14 Thread Kumar Aditya
Change by Kumar Aditya : -- components: Interpreter Core nosy: kumaraditya303 priority: normal severity: normal status: open title: Assertion failed in ceval.c type: crash ___ Python tracker