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 Julien.Courteau
Recipients Arfrever, Julien.Courteau, alexis, eric.araujo, tarek
Date 2012-05-13.02:55:20
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1336877721.24.0.664663036943.issue13400@psf.upfronthosting.co.za>
In-reply-to
Content
Here is the last proposition of Eric done at the last Montreal Sprint (May 12):

--no-byte-compile    -> No *.pyc and *.pyo
--byte-compile=b     -> Only *.pyc
--byte-compile=b,o   -> *.pyc and *.pyo (with docstrings)
--byte-compile=b,oo  -> *.pyc and *.pyo (without docstrings)
--byte-compile=o     -> Only *.pyo (with docstrings)
--byte-compile=oo    -> Only *.pyo (without docstrings)
--byte-compile=o,oo  -> Error

The parameters are symetric with the -B, -o and -oo of the python command.
History
Date User Action Args
2012-05-13 02:55:21Julien.Courteausetrecipients: + Julien.Courteau, tarek, eric.araujo, Arfrever, alexis
2012-05-13 02:55:21Julien.Courteausetmessageid: <1336877721.24.0.664663036943.issue13400@psf.upfronthosting.co.za>
2012-05-13 02:55:20Julien.Courteaulinkissue13400 messages
2012-05-13 02:55:20Julien.Courteaucreate