diff options
Diffstat (limited to 'Lib/pydoc.py')
-rwxr-xr-x | Lib/pydoc.py | 8 |
1 files changed, 0 insertions, 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: |