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 serhiy.storchaka
Recipients Arfrever, brett.cannon, christian.heimes, georg.brandl, lemburg, pitrou, rhettinger, scoder, serhiy.storchaka, tim.peters
Date 2014-11-08.09:28:54
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1415438935.29.0.880721978493.issue22789@psf.upfronthosting.co.za>
In-reply-to
Content
Compressing pyc files one by one wouldn't save much space because disk space is allocated by blocks (up to 32 KiB on FAT32). If the size of pyc file is less than block size, we will not gain anything. ZIP file has advantage due more compact packing of files. In additional it can has less access time due to less fragmentation. Unfortunately it doesn't support the LZ4 compression, but we can store LZ4 compressed files in ZIP file without additional compression.

Uncompressed TAR file has same advantages but needs longer initialization time (for building the index).
History
Date User Action Args
2014-11-08 09:28:55serhiy.storchakasetrecipients: + serhiy.storchaka, lemburg, tim.peters, brett.cannon, georg.brandl, rhettinger, pitrou, scoder, christian.heimes, Arfrever
2014-11-08 09:28:55serhiy.storchakasetmessageid: <1415438935.29.0.880721978493.issue22789@psf.upfronthosting.co.za>
2014-11-08 09:28:55serhiy.storchakalinkissue22789 messages
2014-11-08 09:28:54serhiy.storchakacreate