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 Marc.Abramowitz
Recipients Marc.Abramowitz, Ronan.Lamy, brett.cannon, jcea, ncoghlan
Date 2012-06-27.14:08:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340806137.58.0.931507102292.issue15031@psf.upfronthosting.co.za>
In-reply-to
Content
Well, it may be a vestige from setuptools and I don't know if it's still needed/appropriate, but distribute scans the pyc modules to try to see whether stuff is zip_safe or not when you run `python setup.py bdist_egg`:

https://bitbucket.org/tarek/distribute/src/da2848d34282/setuptools/command/bdist_egg.py#cl-420

Personally, I always set zip_safe to True as I find zipped distributions to be a pain in the butt, but not all distributions out there always set it and currently `python setup.py bdist_egg` (and probably other commands?) bombs on such packages.

We should probably get Tarek to weigh in here.
History
Date User Action Args
2012-06-27 14:08:57Marc.Abramowitzsetrecipients: + Marc.Abramowitz, brett.cannon, jcea, ncoghlan, Ronan.Lamy
2012-06-27 14:08:57Marc.Abramowitzsetmessageid: <1340806137.58.0.931507102292.issue15031@psf.upfronthosting.co.za>
2012-06-27 14:08:56Marc.Abramowitzlinkissue15031 messages
2012-06-27 14:08:56Marc.Abramowitzcreate