-
- Notifications
You must be signed in to change notification settings - Fork 33.1k
Closed
Labels
3.11only security fixesonly security fixesrelease-blockertype-crashA hard crash of the interpreter, possibly with a core dumpA hard crash of the interpreter, possibly with a core dump
Description
Crash report
This was discovered in an asyncio
program when interrupted with CTRL - C.
Minimal Reproducer:
import gc import inspect gc.set_threshold(1, 0, 0) f = [] def cb(*args): f.append(inspect.stack()) gc.callbacks.append(cb) def gen(): yield 1 g = gen() g.__next__()
Error messages
python: Python/ceval.c:5436: _PyEval_EvalFrameDefault: Assertion `frame->frame_obj == NULL' failed. Aborted (core dumped)
Your environment
Metadata
Metadata
Assignees
Labels
3.11only security fixesonly security fixesrelease-blockertype-crashA hard crash of the interpreter, possibly with a core dumpA hard crash of the interpreter, possibly with a core dump
Projects
Status
Done