diff options
author | Brian Curtin <brian.curtin@gmail.com> | 2010-03-31 17:43:52 (GMT) |
---|---|---|
committer | Brian Curtin <brian.curtin@gmail.com> | 2010-03-31 17:43:52 (GMT) |
commit | da343d47f9009b4d255ae5619a480e20ef924ec8 (patch) | |
tree | 4b44f65ca90e195f030d8b856d54948ef2f3368e /Lib/pydoc.py | |
parent | fc7b3d26b1fa9642d65370e8a26d940e6e2b2418 (diff) | |
download | cpython-da343d47f9009b4d255ae5619a480e20ef924ec8.zip cpython-da343d47f9009b4d255ae5619a480e20ef924ec8.tar.gz cpython-da343d47f9009b4d255ae5619a480e20ef924ec8.tar.bz2 |
Merged revisions 79529 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
Diffstat (limited to 'Lib/pydoc.py')
-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 03c0d09..2314f27 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -357,7 +357,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: |