[Python-checkins] r79530 - python/branches/release26-maint/Lib/pydoc.py

brian.curtin python-checkins at python.org
Wed Mar 31 19:43:52 CEST 2010


Author: brian.curtin
Date: Wed Mar 31 19:43:52 2010
New Revision: 79530

Log:
Merged revisions 79529 via svnmerge from 
svn+ssh://pythondev@svn.python.org/python/trunk



Modified:
   python/branches/release26-maint/Lib/pydoc.py

Modified: python/branches/release26-maint/Lib/pydoc.py
==============================================================================
--- python/branches/release26-maint/Lib/pydoc.py	(original)
+++ python/branches/release26-maint/Lib/pydoc.py	Wed Mar 31 19:43:52 2010
@@ -357,7 +357,7 @@
                                  '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:


More information about the Python-checkins mailing list