Commit 9deaa06f authored by Nick Coghlan's avatar Nick Coghlan

Issue #9319: Remove the workaround for this since fixed problem from pydoc

parent 2824cb50
...@@ -2029,14 +2029,6 @@ class ModuleScanner: ...@@ -2029,14 +2029,6 @@ class ModuleScanner:
if self.quit: if self.quit:
break 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: if key is None:
callback(None, modname, '') callback(None, modname, '')
else: else:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment