This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: _PyAsyncGenWrappedValue_Type is never Readied
Type: behavior Stage:
Components: Interpreter Core Versions: Python 3.9
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Tomasz Pytel
Priority: normal Keywords:

Created on 2020-06-22 16:19 by Tomasz Pytel, last changed 2022-04-11 14:59 by admin.

Messages (1)
msg372099 - (view) Author: Tomasz Pytel (Tomasz Pytel) Date: 2020-06-22 16:19
A call is never made to PyType_Ready(&_PyAsyncGenWrappedValue_Type) on initialization unlike for all other Python type objects I can see. Does not seem to have any negative effects at the moment except to mess up my Python type instrumentation. May turn into a bug in the future if all types are assumed readied, is this intended behavior?
History
Date User Action Args
2022-04-11 14:59:32adminsetgithub: 85251
2020-06-22 16:19:31Tomasz Pytelcreate