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 scoder
Recipients eric.araujo, scoder, tarek
Date 2011-02-20.09:54:53
SpamBayes Score 8.792789e-06
Marked as misclassified No
Message-id <1298195698.48.0.330644441328.issue11254@psf.upfronthosting.co.za>
In-reply-to
Content
During installation of Python packages (setup.py install or bdist), distutils puts .pyc files into the installed source directory, instead of moving them into __pycache__. This may mean that they are not getting used after installation (with potentially no way of getting updated due to lack of write access by users), and that source files that get imported during installation may end up with .pyc files in both the source directory and the __pycache__ directory in the installed package.

The relevant python-dev thread is here:

http://thread.gmane.org/gmane.comp.python.devel/121248/
History
Date User Action Args
2011-02-20 09:54:58scodersetrecipients: + scoder, tarek, eric.araujo
2011-02-20 09:54:58scodersetmessageid: <1298195698.48.0.330644441328.issue11254@psf.upfronthosting.co.za>
2011-02-20 09:54:53scoderlinkissue11254 messages
2011-02-20 09:54:53scodercreate