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 Sworddragon
Recipients Sworddragon
Date 2013-11-09.06:14:31
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1383977671.71.0.216863733514.issue19532@psf.upfronthosting.co.za>
In-reply-to
Content
The force-option from compileall seems not to rebuild the bytecode files if they already exist. Here is an example of 2 calls:

root@ubuntu:~# python3 -m compileall -f
Skipping current directory
Listing '/usr/lib/python3.3'...
Compiling '/usr/lib/python3.3/__phello__.foo.py'...
Compiling '/usr/lib/python3.3/_compat_pickle.py'...
Compiling '/usr/lib/python3.3/_dummy_thread.py'...
...
Compiling '/usr/lib/python3.3/webbrowser.py'...
Compiling '/usr/lib/python3.3/xdrlib.py'...
Compiling '/usr/lib/python3.3/zipfile.py'...
Listing '/usr/lib/python3.3/plat-x86_64-linux-gnu'...
Listing '/usr/lib/python3.3/lib-dynload'...
Listing '/usr/local/lib/python3.3/dist-packages'...
Listing '/usr/lib/python3/dist-packages'...
root@ubuntu:~# python3 -m compileall -f
Skipping current directory
Listing '/usr/lib/python3.3'...
Listing '/usr/lib/python3.3/plat-x86_64-linux-gnu'...
Listing '/usr/lib/python3.3/lib-dynload'...
Listing '/usr/local/lib/python3.3/dist-packages'...
Listing '/usr/lib/python3/dist-packages'...
History
Date User Action Args
2013-11-09 06:14:31Sworddragonsetrecipients: + Sworddragon
2013-11-09 06:14:31Sworddragonsetmessageid: <1383977671.71.0.216863733514.issue19532@psf.upfronthosting.co.za>
2013-11-09 06:14:31Sworddragonlinkissue19532 messages
2013-11-09 06:14:31Sworddragoncreate