Uh oh!
There was an error while loading. Please reload this page.
bpo-40077: Convert _pickle module to use heap types. - #30884
bpo-40077: Convert _pickle module to use heap types.#30884CharlieZhao95 wants to merge 6 commits into
Conversation
use PyType_FromSpec().
vstinner
commented
Jan 25, 2022
Sadly, for now, converting static types to heap types is stale: https://bugs.python.org/issue40077#msg411630 |
CharlieZhao95
commented
Jan 26, 2022
Thanks for your reply! I'll keep this branch around and await to get permission from SC to continue with these changes. |
erlend-aasland
commented
Jan 28, 2022
kumaraditya303
commented
Mar 10, 2022
@erlend-aasland What is the current status now? Should more extension modules be ported or not ? |
erlend-aasland
commented
Mar 10, 2022
Petr and I are working on a PEP. When it is ready for review, we'll post it on Discourse/python-dev. When all comments have been addressed, we'll submit it to the SC and wait for either acceptance or rejection. I don't think there will be a change of status in the 3.11 development frame. |
Replace statically allocated types in _pickle module with heap allocated types:
use PyType_FromModuleAndSpec().
https://bugs.python.org/issue40077