diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-03-31 17:49:27 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-03-31 17:49:27 (GMT) |
commit | a94cbd8fad7bac6e80a473b3c4a91a6c94698f83 (patch) | |
tree | 365715c468ba0436291b3648a3ee8f6cd3de8ef2 | |
parent | fcc25ba256fb3531bc25bc2f2003bfa864eaaf7d (diff) | |
download | cpython-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
........
-rwxr-xr-x | Lib/pydoc.py | 2 |
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: |