]> granicus.if.org Git - python/commitdiff
asyncio: Reverting 69d474dab479 as issue #21645 is now closed and debug is no longer...
authorYury Selivanov <yselivanov@sprymix.com>
Thu, 25 Sep 2014 03:41:28 +0000 (23:41 -0400)
committerYury Selivanov <yselivanov@sprymix.com>
Thu, 25 Sep 2014 03:41:28 +0000 (23:41 -0400)
Lib/test/test_asyncio/test_streams.py

index 8adc3b29215570cb7f9890b750bdbd77ae46aee8..73a375aba42d2fbfe7ce3673f441e31add69ea50 100644 (file)
@@ -596,12 +596,6 @@ class StreamReaderTests(test_utils.TestCase):
 
         code = """\
 import os, sys
-try:
-    import faulthandler
-except ImportError:
-    pass
-else:
-    faulthandler.dump_traceback_later(60, exit=True)
 fd = int(sys.argv[1])
 os.write(fd, b'data')
 os.close(fd)