[Python-checkins] cpython: Issue #9319: Remove the workaround for this since fixed problem from pydoc

nick.coghlan python-checkins at python.org
Sun Jul 15 14:17:18 CEST 2012


http://hg.python.org/cpython/rev/ce0687a8383b
changeset:   78113:ce0687a8383b
user:        Nick Coghlan <ncoghlan at gmail.com>
date:        Sun Jul 15 22:17:02 2012 +1000
summary:
  Issue #9319: Remove the workaround for this since fixed problem from pydoc

files:
  Lib/pydoc.py |  8 --------
  1 files changed, 0 insertions(+), 8 deletions(-)


diff --git a/Lib/pydoc.py b/Lib/pydoc.py
--- a/Lib/pydoc.py
+++ b/Lib/pydoc.py
@@ -2029,14 +2029,6 @@
             if self.quit:
                 break
 
-            # XXX Skipping this file is a workaround for a bug
-            # that causes python to crash with a segfault.
-            # http://bugs.python.org/issue9319
-            #
-            # TODO Remove this once the bug is fixed.
-            if modname in {'test.badsyntax_pep3120', 'badsyntax_pep3120'}:
-                continue
-
             if key is None:
                 callback(None, modname, '')
             else:

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list