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 brett.cannon, ncoghlan, petri.lehtinen, pitrou
Date 2011-10-26.08:18:26
SpamBayes Score 0.0010485098
Marked as misclassified No
Message-id <1319617107.73.0.754179448145.issue13267@psf.upfronthosting.co.za>
In-reply-to
Content
This feature is unnecessary now that PEP 3147 has been adopted. The way it works in 3.2+ is that orphaned bytecode files inside __pycache__ are always ignored, while bytecode files that live directly in the source directories are always imported.

This handles both use cases nicely:
- the implicitly created cache files are ignored if their source file has been deleted
- bytecode only distribution is still supported by explicitly installing bytecode files instead of source files
History
Date User Action Args
2011-10-26 08:18:27ncoghlansetrecipients: + ncoghlan, brett.cannon, pitrou, petri.lehtinen
2011-10-26 08:18:27ncoghlansetmessageid: <1319617107.73.0.754179448145.issue13267@psf.upfronthosting.co.za>
2011-10-26 08:18:27ncoghlanlinkissue13267 messages
2011-10-26 08:18:26ncoghlancreate