[issue586680] -S hides standard dynamic modules
Benjamin Peterson
report at bugs.python.org
Fri Sep 12 00:07:58 CEST 2008
Benjamin Peterson <musiccomposition at gmail.com> added the comment:
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
----------
nosy: +benjamin.peterson
_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue586680>
_______________________________________
More information about the Python-bugs-list
mailing list