diff options
Diffstat (limited to 'Lib/test/test_asyncio/test_streams.py')
-rw-r--r-- | Lib/test/test_asyncio/test_streams.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/Lib/test/test_asyncio/test_streams.py b/Lib/test/test_asyncio/test_streams.py index 673c6b46c64..0b47b2b91a1 100644 --- a/Lib/test/test_asyncio/test_streams.py +++ b/Lib/test/test_asyncio/test_streams.py @@ -1,15 +1,12 @@ """Tests for streams.py.""" import gc -import os import queue import pickle import socket -import sys import threading import unittest from unittest import mock -import warnings try: import ssl except ImportError: @@ -17,7 +14,7 @@ except ImportError: import asyncio from test.test_asyncio import utils as test_utils -from test.support import requires_subprocess, socket_helper +from test.support import socket_helper def tearDownModule(): |