From: Yury Selivanov Date: Thu, 25 Sep 2014 03:41:28 +0000 (-0400) Subject: asyncio: Reverting 69d474dab479 as issue #21645 is now closed and debug is no longer... X-Git-Tag: v3.5.0a1~856 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f45ea46fe8f1d22ac7602f280f9c4e4deb6562ba;p=python asyncio: Reverting 69d474dab479 as issue #21645 is now closed and debug is no longer needed --- diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py index 8adc3b2921..73a375aba4 100644 --- a/Lib/test/test_asyncio/test_streams.py +++ b/Lib/test/test_asyncio/test_streams.py @@ -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)