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 vstinner
Recipients lebigot, vstinner
Date 2011-09-15.09:11:15
SpamBayes Score 4.61785e-05
Marked as misclassified No
Message-id <4E71C135.5030904@haypocalc.com>
In-reply-to <1316075986.48.0.999988234622.issue12982@psf.upfronthosting.co.za>
Content
> Indeed.  Thanks.  I wish it had been in the documentation. :)  This is yet another reason for me to check how I can submit patches to the doc. :)

Read http://docs.python.org/devguide/ to learn how to get the source of 
the documentation and how to write a patch.

> I also found out that renaming the .pyo file as .pyc makes Python happy upon import.  That's the solution I chose, because I don't want users to have to type "python -O" when calling programs compiled with -O or -OO.

Oh, I didn't know this trick, but yeah PYO and PYC are basically the 
same thing. The main difference is that PYO doesn't contain docstrings 
and doesn't contain "set the current line to ..." bytecode instructions.
History
Date User Action Args
2011-09-15 09:11:16vstinnersetrecipients: + vstinner, lebigot
2011-09-15 09:11:15vstinnerlinkissue12982 messages
2011-09-15 09:11:15vstinnercreate