diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2009-11-15 22:58:27 +0000 |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2009-11-15 22:58:27 +0000 |
commit | 29d5bb19c8a38c51e7b9c8f30d3c9ea0f5f5b09e (patch) | |
tree | 52c7926a76df891de15c3a065a93793491568002 | |
parent | c3363ba0a3822bece4129a89c9f79186dec30aa0 (diff) | |
download | cpython-git-29d5bb19c8a38c51e7b9c8f30d3c9ea0f5f5b09e.tar.gz |
Merged revisions 76312 via svnmerge from
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
........
-rwxr-xr-x | Lib/pydoc.py | 12 | ||||
-rw-r--r-- | Misc/NEWS | 2 |
2 files changed, 9 insertions, 5 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 9920fcb2de..4cf9066caa 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -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') @@ -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 |