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 eric.snow
Recipients eric.snow
Date 2021-09-29.17:57:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1632938224.05.0.143549467143.issue45324@roundup.psfhosted.org>
In-reply-to
Content
Currently FrozenImporter (in Lib/importlib/_bootstrap.py) does minimal work in its find_spec() method.  It only checks whether or not the module is frozen.  However, in doing so it has gathered all the info we need to load the module.  We end up repeating that work in exec_module().

Rather than duplicating that effort, we should preserve the info in spec.loader_state.  This has the added benefit of aligning more closely with the division between finder and loader.  Once we get to the loader, there shouldn't be a need to check if the module is frozen nor otherwise interact with the internal frozen module state (i.e. PyImport_FrozenModules).
History
Date User Action Args
2021-09-29 17:57:04eric.snowsetrecipients: + eric.snow
2021-09-29 17:57:04eric.snowsetmessageid: <1632938224.05.0.143549467143.issue45324@roundup.psfhosted.org>
2021-09-29 17:57:04eric.snowlinkissue45324 messages
2021-09-29 17:57:03eric.snowcreate