-
-
Notifications
You must be signed in to change notification settings - Fork 36.4k
Segfault on cls.__dict__['__new__'].__annotations__ #125017
Copy link
Copy link
Closed
Labels
3.14bugs and security fixesbugs and security fixesinterpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)type-crashA hard crash of the interpreter, possibly with a core dumpA hard crash of the interpreter, possibly with a core dump
Description
Activity
Metadata
Metadata
Assignees
Labels
3.14bugs and security fixesbugs and security fixesinterpreter-core(Objects, Python, Grammar, and Parser dirs)(Objects, Python, Grammar, and Parser dirs)type-crashA hard crash of the interpreter, possibly with a core dumpA hard crash of the interpreter, possibly with a core dump
Crash report
What happened?
The following is a reproducer of (another) segfault discovered when trying to test Python 3.14 in CI for Sphinx:
Whilst checking
__annotations__directly is somewhat convoluted, it was originally triggered byinspect.isasyncgenfunction(), which callsinspect._signature_is_functionlike()via_has_code_flag().A similar error occurs with
__class_getitem__and__init_subclass__, but not with user-defined methdods declared with eitherclassmethodorstaticmethod. As the reproducer demonstrates, the segfault only happens with the descriptor object from__dict__--cls.__new__.__annotations__is fine.Bisection showed this to be due to d28afd3 (#119864), cc @JelleZijlstra
A
CPython versions tested on:
CPython main branch
Operating systems tested on:
Linux
Output from running 'python -VV' on the command line:
Python 3.14.0a0 (bisect/bad:d28afd3fa06, Oct 6 2024, 01:35:23) [GCC 13.2.0]
Linked PRs