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 ncoghlan
Recipients Ramchandra Apte, docs@python, fijall, ncoghlan
Date 2013-02-19.14:12:03
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1361283123.37.0.525237678201.issue17232@psf.upfronthosting.co.za>
In-reply-to
Content
Ramchandra, as it turns out, if we deem an optimization semantically safe, we do it without -O, it we deem it unsafe, we don't do it at all.

Thus, the real effect is to remove assert statements and optimise code as if "__debug__" was replaced by a literal zero (effectively).

So a more meaningful description would be:

-O
Removes assert statements and any code conditional on the value of __debug__. This changes the filename extension for compiled (bytecode) files from .pyc to .pyo. See also PYTHONOPTIMIZE.
History
Date User Action Args
2013-02-19 14:12:03ncoghlansetrecipients: + ncoghlan, docs@python, fijall, Ramchandra Apte
2013-02-19 14:12:03ncoghlansetmessageid: <1361283123.37.0.525237678201.issue17232@psf.upfronthosting.co.za>
2013-02-19 14:12:03ncoghlanlinkissue17232 messages
2013-02-19 14:12:03ncoghlancreate