[issue586680] -S hides standard dynamic modules

2010-08-14 Thread STINNER Victor

STINNER Victor  added the comment:

Ooops, I didn't notice that Antoine did already updated this issue. Restore the 
resolution as duplicate since the superseder field is set.

--
resolution: fixed -> duplicate

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue586680] -S hides standard dynamic modules

2010-08-14 Thread STINNER Victor

STINNER Victor  added the comment:

r83988 does really fix this issue in python 3.2, 8 years later, yeah!

--
nosy: +haypo, pitrou
resolution: duplicate -> fixed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue586680] -S hides standard dynamic modules

2010-08-13 Thread Antoine Pitrou

Changes by Antoine Pitrou :


--
resolution: wont fix -> duplicate
superseder:  -> test_heapq: AttributeError: 'int' object has no attribute 'pop'

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue586680] -S hides standard dynamic modules

2008-09-18 Thread Brett Cannon

Brett Cannon <[EMAIL PROTECTED]> added the comment:

On Thu, Sep 18, 2008 at 6:58 PM, Brett Cannon <[EMAIL PROTECTED]> wrote:
>
> Brett Cannon <[EMAIL PROTECTED]> added the comment:
>
> If we think once can reliably add the directory based purely on whether
> it starts with "build/lib.", and then potentially check for a suffix of
> "-pydebug" if we are in a debug build,

... and if there is more than one match in the build directory, either
error out or choose one of the directories somehow. I guess the real
question is how often to people actually have multiple versions of
their built libraries in build/.

___
Python tracker <[EMAIL PROTECTED]>

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue586680] -S hides standard dynamic modules

2008-09-18 Thread Brett Cannon

Brett Cannon <[EMAIL PROTECTED]> added the comment:

If we think once can reliably add the directory based purely on whether
it starts with "build/lib.", and then potentially check for a suffix of
"-pydebug" if we are in a debug build, I will support adding this to
getpath.c to ditch the distutils import used by site.py.

___
Python tracker <[EMAIL PROTECTED]>

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue586680] -S hides standard dynamic modules

2008-09-11 Thread Benjamin Peterson

Benjamin Peterson <[EMAIL PROTECTED]> added the comment:

Note that this does cause incompatibility between development copies and
installed copies:

$ python -S -c "import itertools; print itertools"


$ ./python -S -c "import itertools; print itertools"
Traceback (most recent call last):
  File "", line 1, in 
ImportError: No module named itertools

--
nosy: +benjamin.peterson

___
Python tracker <[EMAIL PROTECTED]>

___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com