summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorYury Selivanov <yselivanov@sprymix.com>2014-09-25 03:41:28 (GMT)
committerYury Selivanov <yselivanov@sprymix.com>2014-09-25 03:41:28 (GMT)
commitf45ea46fe8f1d22ac7602f280f9c4e4deb6562ba (patch)
tree9b37c5e523553c6ee5175f91f12aa1a5b5743995 /Lib/test
parentd1223a7adc883af09d166a269e535bdb7d02b2e3 (diff)
downloadcpython-f45ea46fe8f1d22ac7602f280f9c4e4deb6562ba.zip
cpython-f45ea46fe8f1d22ac7602f280f9c4e4deb6562ba.tar.gz
cpython-f45ea46fe8f1d22ac7602f280f9c4e4deb6562ba.tar.bz2
asyncio: Reverting 69d474dab479 as issue #21645 is now closed and debug is no longer needed
Diffstat (limited to 'Lib/test')
-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 8adc3b2..73a375a 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)