]> granicus.if.org Git - python/commitdiff
Merged revisions 76312 via svnmerge from
authorNick Coghlan <ncoghlan@gmail.com>
Sun, 15 Nov 2009 22:58:27 +0000 (22:58 +0000)
committerNick Coghlan <ncoghlan@gmail.com>
Sun, 15 Nov 2009 22:58:27 +0000 (22:58 +0000)
svn+ssh://pythondev@svn.python.org/python/trunk

........
  r76312 | nick.coghlan | 2009-11-16 08:36:47 +1000 (Mon, 16 Nov 2009) | 1 line

  Issue #7328: don't corrupt sys.path when running pydoc with the -m switch
........

Lib/pydoc.py
Misc/NEWS

index 9920fcb2de9354dac659bc7b62145882a36d14c5..4cf9066caa36107510cfb19ba1ff8c3d24517c8e 100755 (executable)
@@ -2254,11 +2254,13 @@ def cli():
     import getopt
     class BadUsage: pass
 
-    # Scripts don't get the current directory in their path by default.
-    scriptdir = os.path.dirname(sys.argv[0])
-    if scriptdir in sys.path:
-        sys.path.remove(scriptdir)
-    sys.path.insert(0, '.')
+    # Scripts don't get the current directory in their path by default
+    # unless they are run with the '-m' switch
+    if '' not in sys.path:
+        scriptdir = os.path.dirname(sys.argv[0])
+        if scriptdir in sys.path:
+            sys.path.remove(scriptdir)
+        sys.path.insert(0, '.')
 
     try:
         opts, args = getopt.getopt(sys.argv[1:], 'gk:p:w')
index a8eeaf200d55bd586c03d5bf94c602230220d446..aecf5ca589371c20669ed1ae165c0da944be1e3f 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -26,6 +26,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #7328: pydoc no longer corrupts sys.path when run with the '-m' switch
+
 - Issue #7318: multiprocessing now uses a timeout when it fails to establish
   a connection with another process, rather than looping endlessly. The
   default timeout is 20 seconds, which should be amply sufficient for