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

This commit is contained in:
Nick Coghlan 2012-07-15 22:17:02 +10:00
parent 2824cb507d
commit 9deaa06fe1
1 changed files with 0 additions and 8 deletions

View File

@ -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: