Serhiy Storchaka added the comment:

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).

----------
nosy: +serhiy.storchaka

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue22789>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to