summaryrefslogtreecommitdiff
path: root/Lib/site.py
diff options
context:
space:
mode:
authorFlorent Xicluna <florent.xicluna@gmail.com>2010-03-22 22:52:11 +0000
committerFlorent Xicluna <florent.xicluna@gmail.com>2010-03-22 22:52:11 +0000
commit176cda11dffa7759dae138b49f103e6411e6679e (patch)
treed81a0208367dfe91fa91959713d85b2b37b6d92c /Lib/site.py
parente1f4c92d23d9fb71bbaf76be12e80757c7d43e6a (diff)
downloadcpython-git-176cda11dffa7759dae138b49f103e6411e6679e.tar.gz
Issue #8205: Remove the "Modules" directory from sys.path when Python is running from the build directory (POSIX only).
Diffstat (limited to 'Lib/site.py')
-rw-r--r--Lib/site.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/site.py b/Lib/site.py
index e391670ed4..b36df1f5dc 100644
--- a/Lib/site.py
+++ b/Lib/site.py
@@ -118,7 +118,7 @@ def addbuilddir():
s = "build/lib.%s-%.3s" % (get_platform(), sys.version)
if hasattr(sys, 'gettotalrefcount'):
s += '-pydebug'
- s = os.path.join(os.path.dirname(sys.path[-1]), s)
+ s = os.path.join(os.path.dirname(sys.path.pop()), s)
sys.path.append(s)