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 lemburg
Recipients Mark.Shannon, lemburg, lys.nikolaou, pablogsal
Date 2021-10-22.21:40:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1634938815.62.0.2630884023.issue45563@roundup.psfhosted.org>
In-reply-to
Content
I've looked at how the importlib freeze logic works, compared to Tools/freeze/freeze.py.

The only difference I can spot is that importlib uses C to build the C array and does a compile followed by a marshal.dumps, whereas freeze.py loads all modules into memory and then runs marshal on module.__code__.

Could this cause issues with the line number calculations in 3.10 ?
History
Date User Action Args
2021-10-22 21:40:15lemburgsetrecipients: + lemburg, Mark.Shannon, lys.nikolaou, pablogsal
2021-10-22 21:40:15lemburgsetmessageid: <1634938815.62.0.2630884023.issue45563@roundup.psfhosted.org>
2021-10-22 21:40:15lemburglinkissue45563 messages
2021-10-22 21:40:15lemburgcreate