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 benjamin.peterson
Recipients benjamin.peterson, brett.cannon, fdrake
Date 2008-09-11.22:07:56
SpamBayes Score 1.1166956e-07
Marked as misclassified No
Message-id <1221170878.27.0.504339236012.issue586680@psf.upfronthosting.co.za>
In-reply-to
Content
Note that this does cause incompatibility between development copies and
installed copies:

$ python -S -c "import itertools; print itertools"
<module 'itertools' from ...>

$ ./python -S -c "import itertools; print itertools"
Traceback (most recent call last):
  File "<string>", line 1, in <module>
ImportError: No module named itertools
History
Date User Action Args
2008-09-11 22:07:58benjamin.petersonsetrecipients: + benjamin.peterson, fdrake, brett.cannon
2008-09-11 22:07:58benjamin.petersonsetmessageid: <1221170878.27.0.504339236012.issue586680@psf.upfronthosting.co.za>
2008-09-11 22:07:56benjamin.petersonlinkissue586680 messages
2008-09-11 22:07:56benjamin.petersoncreate