From f45ea46fe8f1d22ac7602f280f9c4e4deb6562ba Mon Sep 17 00:00:00 2001 From: Yury Selivanov Date: Wed, 24 Sep 2014 23:41:28 -0400 Subject: [PATCH] asyncio: Reverting 69d474dab479 as issue #21645 is now closed and debug is no longer needed --- Lib/test/test_asyncio/test_streams.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py index 8adc3b29215..73a375aba42 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)