summaryrefslogtreecommitdiffstats
path: root/Lib/pydoc.py
diff options
context:
space:
mode:
authorBrian Curtin <brian.curtin@gmail.com>2010-03-31 17:49:27 (GMT)
committerBrian Curtin <brian.curtin@gmail.com>2010-03-31 17:49:27 (GMT)
commita94cbd8fad7bac6e80a473b3c4a91a6c94698f83 (patch)
tree365715c468ba0436291b3648a3ee8f6cd3de8ef2 /Lib/pydoc.py
parentfcc25ba256fb3531bc25bc2f2003bfa864eaaf7d (diff)
downloadcpython-a94cbd8fad7bac6e80a473b3c4a91a6c94698f83.zip
cpython-a94cbd8fad7bac6e80a473b3c4a91a6c94698f83.tar.gz
cpython-a94cbd8fad7bac6e80a473b3c4a91a6c94698f83.tar.bz2
Merged revisions 79531 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r79531 | brian.curtin | 2010-03-31 11:46:38 -0600 (Wed, 31 Mar 2010) | 4 lines Merged revisions 79529 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk ........
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-xLib/pydoc.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py
index 196056c..90dff04 100755
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -350,7 +350,7 @@ class Doc:
'_thread', 'zipimport') or
(file.startswith(basedir) and
not file.startswith(os.path.join(basedir, 'site-packages')))) and
- object.__name__ not in ('xml.etree')):
+ object.__name__ != 'xml.etree'):
if docloc.startswith("http://"):
docloc = "%s/%s" % (docloc.rstrip("/"), object.__name__)
else: