summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-09-24 23:41:28 -0400
committerYury Selivanov <yselivanov@sprymix.com>2014-09-24 23:41:28 -0400
commitf45ea46fe8f1d22ac7602f280f9c4e4deb6562ba (patch)
tree9b37c5e523553c6ee5175f91f12aa1a5b5743995
parentd1223a7adc883af09d166a269e535bdb7d02b2e3 (diff)
downloadcpython-git-f45ea46fe8f1d22ac7602f280f9c4e4deb6562ba.tar.gz
asyncio: Reverting 69d474dab479 as issue #21645 is now closed and debug is no longer needed
-rw-r--r--Lib/test/test_asyncio/test_streams.py6
1 files changed, 0 insertions, 6 deletions
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)