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 kumaraditya
Recipients gvanrossum, kumaraditya
Date 2022-02-02.09:08:27
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1643792907.85.0.286906427988.issue46608@roundup.psfhosted.org>
In-reply-to
Content
This reduces the size of the data segment by 300 KB of the executable because if the modules are deep-frozen then the marshalled frozen data just wastes space. This was inspired by comment by @gvanrossum in #29118 (comment). Note: There is a new option `--deepfreeze-only` in freeze_modules.py to change this behavior, it is on be default to save disk space.

# du -s ./python before
27892   ./python
# du -s ./python after
27524   ./python
History
Date User Action Args
2022-02-02 09:08:27kumaradityasetrecipients: + kumaraditya, gvanrossum
2022-02-02 09:08:27kumaradityasetmessageid: <1643792907.85.0.286906427988.issue46608@roundup.psfhosted.org>
2022-02-02 09:08:27kumaradityalinkissue46608 messages
2022-02-02 09:08:27kumaradityacreate