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.

Author vstinner
Recipients CharlieZhao, Jim Fasarakis-Hilliard, TCsaba, amaury.forgeotdarc, christian.heimes, corona10, eric.snow, erlendaasland, h-vetinari, isoschiz, koubaa, kumaraditya, kylotan, lukasz.langa, miss-islington, orsenthil, pconnell, petr.viktorin, phsilva, python-dev, santoso.wijaya, serhiy.storchaka, shihai1991, tlesher, vstinner, ysj.ray
Date 2022-01-21.12:05:18
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1642766718.22.0.0979494260595.issue1635741@roundup.psfhosted.org>
In-reply-to
Content
Using "./python -IsS" command, sys.modules now only has 3 extensions which are not created by PyModuleDef_Init():

* builtins
* _io
* sys

The builtins and sys extensions use many static types. Converting these static types to heap types is blocked by bpo-40601. Soon, bpo-46417 will clear these types. Py_Finalize() does its best to clear explicitly builtins and sys namespaces.
History
Date User Action Args
2022-01-21 12:05:18vstinnersetrecipients: + vstinner, amaury.forgeotdarc, orsenthil, kylotan, christian.heimes, tlesher, phsilva, petr.viktorin, ysj.ray, santoso.wijaya, lukasz.langa, python-dev, eric.snow, serhiy.storchaka, pconnell, isoschiz, Jim Fasarakis-Hilliard, corona10, miss-islington, shihai1991, erlendaasland, koubaa, h-vetinari, TCsaba, kumaraditya, CharlieZhao
2022-01-21 12:05:18vstinnersetmessageid: <1642766718.22.0.0979494260595.issue1635741@roundup.psfhosted.org>
2022-01-21 12:05:18vstinnerlinkissue1635741 messages
2022-01-21 12:05:18vstinnercreate