Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 34k
Description
Crash report
What happened?
The following is a reproducer of (another) segfault discovered when trying to test Python 3.14 in CI for Sphinx:
classSpam: def__new__(cls, x, y): passif__name__=='__main__': assertSpam.__new__.__annotations__=={} obj=Spam.__dict__['__new__'] assertisinstance(obj, staticmethod) getattr(obj, '__annotations__', None) # segfault heretry: obj.__annotations__# and here (absent the above)exceptAttributeError: passprint('no segfault!')Whilst checking __annotations__ directly is somewhat convoluted, it was originally triggered by inspect.isasyncgenfunction(), which calls inspect._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 either classmethod or staticmethod. 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
d28afd3fa064db10a2eb2a65bba33e8ea77a8fcf is the first bad commit commit d28afd3fa064db10a2eb2a65bba33e8ea77a8fcf Author: Jelle Zijlstra <jelle.zijlstra@gmail.com> Date: Fri May 31 14:05:51 2024 -0700 gh-119180: Lazily wrap annotations on classmethod and staticmethod (#119864) 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]