diff options
author | Nick Coghlan <ncoghlan@gmail.com> | 2012-07-15 12:17:02 (GMT) |
---|---|---|
committer | Nick Coghlan <ncoghlan@gmail.com> | 2012-07-15 12:17:02 (GMT) |
commit | 9deaa06fe1db61294177b228b7266096526cf6b6 (patch) | |
tree | 0a849e0f82092629593fad67f9fe411b24b048a9 /Lib/pydoc.py | |
parent | 2824cb507d80a6d609d4a2f4400185cbd08b4c70 (diff) | |
download | cpython-9deaa06fe1db61294177b228b7266096526cf6b6.zip cpython-9deaa06fe1db61294177b228b7266096526cf6b6.tar.gz cpython-9deaa06fe1db61294177b228b7266096526cf6b6.tar.bz2 |
Issue #9319: Remove the workaround for this since fixed problem from pydoc
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 5d63ffa..a030f68 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: |