From fd2bfb02db1a5b4d06b054ce578b565cca1fd085 Mon Sep 17 00:00:00 2001 From: Brian Curtin Date: Wed, 31 Mar 2010 17:46:38 +0000 Subject: [PATCH] Merged revisions 79529 via svnmerge from svn+ssh://pythondev@svn.python.org/python/trunk --- Lib/pydoc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 62ca3b0d35..50b06904a8 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: -- 2.50.1