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.
Created on 2002年07月25日 19:59 by fdrake, last changed 2022年04月10日 16:05 by admin. This issue is now closed.
| Messages (7) | |||
|---|---|---|---|
| msg11694 - (view) | Author: Fred Drake (fdrake) (Python committer) | Date: 2002年07月25日 19:59 | |
This only applies when os.name == 'posix'. Running an un-installed build of Python with the -S option causes the directory containing the standard dynamically-built modules not to be placed on sys.path. The build/lib.<platform>-<version>/ directory containing those modules is added to sys.path by site.py rather than getpath.c, even though those modules are needed. This includes many modules on most Unix systems: array dbm math regex termios audioop dl md5 resource _testcapi binascii errno mmap rgbimg time bsddb fcntl mpz rotor timing cmath fpectl nis select _tkinter _codecs gdbm operator sha unicodedata cPickle grp parser _socket _weakref crypt _hotshot pcre _ssl xreadlines cStringIO _hotshot pwd strop zlib _curses_panel linuxaudiodev pyexpat struct _curses _locale readline syslog Perhaps the best way to fix this is to add the equivalent code to getpath.c. The relevant stanza in site.py is headed by a comment saying "especially for Guido". |
|||
| msg11695 - (view) | Author: Brett Cannon (brett.cannon) * (Python committer) | Date: 2007年03月21日 00:24 | |
We have lived this long without changing this that I don't think this needs fixing. Requiring the use of site.py when running from a build from a repository checkout seems totally reasonable to me. |
|||
| msg73063 - (view) | Author: Benjamin Peterson (benjamin.peterson) * (Python committer) | Date: 2008年09月11日 22:07 | |
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 |
|||
| msg73411 - (view) | Author: Brett Cannon (brett.cannon) * (Python committer) | Date: 2008年09月19日 01:58 | |
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. |
|||
| msg73414 - (view) | Author: Brett Cannon (brett.cannon) * (Python committer) | Date: 2008年09月19日 02:13 | |
On Thu, Sep 18, 2008 at 6:58 PM, Brett Cannon <report@bugs.python.org> wrote: > > Brett Cannon <brett@python.org> 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/. |
|||
| msg113881 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2010年08月14日 09:45 | |
r83988 does really fix this issue in python 3.2, 8 years later, yeah! |
|||
| msg113883 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2010年08月14日 09:52 | |
Ooops, I didn't notice that Antoine did already updated this issue. Restore the resolution as duplicate since the superseder field is set. |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月10日 16:05:31 | admin | set | github: 36928 |
| 2010年08月14日 09:52:10 | vstinner | set | resolution: fixed -> duplicate messages: + msg113883 |
| 2010年08月14日 09:45:36 | vstinner | set | nosy:
+ pitrou, vstinner resolution: duplicate -> fixed messages: + msg113881 |
| 2010年08月13日 22:20:54 | pitrou | set | resolution: wont fix -> duplicate superseder: test_heapq: AttributeError: 'int' object has no attribute 'pop' |
| 2008年09月19日 02:13:26 | brett.cannon | set | messages: + msg73414 |
| 2008年09月19日 01:58:53 | brett.cannon | set | messages: + msg73411 |
| 2008年09月11日 22:07:56 | benjamin.peterson | set | nosy:
+ benjamin.peterson messages: + msg73063 |
| 2002年07月25日 19:59:26 | fdrake | create | |