From 9deaa06fe1db61294177b228b7266096526cf6b6 Mon Sep 17 00:00:00 2001 From: Nick Coghlan Date: Sun, 15 Jul 2012 22:17:02 +1000 Subject: [PATCH] Issue #9319: Remove the workaround for this since fixed problem from pydoc --- Lib/pydoc.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 5d63ffa63d..a030f685b0 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -2029,14 +2029,6 @@ class ModuleScanner: 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: -- 2.40.0