summaryrefslogtreecommitdiff
path: root/Lib/test/test_asyncio
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2020-04-30 02:21:30 +0200
committerGitHub <noreply@github.com>2020-04-30 02:21:30 +0200
commitb1e11c31c523dc082985e9de779ceeb47224e536 (patch)
treea4f356df1e0228266e885c6ecb5e5dce52baef80 /Lib/test/test_asyncio
parent57572b103ebd8732ac21922f0051a7f140d0e405 (diff)
downloadcpython-git-b1e11c31c523dc082985e9de779ceeb47224e536.tar.gz
bpo-40443: Remove unused imports in tests (GH-19804)
Diffstat (limited to 'Lib/test/test_asyncio')
-rw-r--r--Lib/test/test_asyncio/test_base_events.py1
-rw-r--r--Lib/test/test_asyncio/test_server.py1
-rw-r--r--Lib/test/test_asyncio/test_sslproto.py1
3 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_asyncio/test_base_events.py b/Lib/test/test_asyncio/test_base_events.py
index 4adcbf46cc..533d5cc7f5 100644
--- a/Lib/test/test_asyncio/test_base_events.py
+++ b/Lib/test/test_asyncio/test_base_events.py
@@ -3,7 +3,6 @@
import concurrent.futures
import errno
import math
-import os
import socket
import sys
import threading
diff --git a/Lib/test/test_asyncio/test_server.py b/Lib/test/test_asyncio/test_server.py
index 006ead2956..2de4dcad17 100644
--- a/Lib/test/test_asyncio/test_server.py
+++ b/Lib/test/test_asyncio/test_server.py
@@ -3,7 +3,6 @@ import time
import threading
import unittest
-from test import support
from test.support import socket_helper
from test.test_asyncio import utils as test_utils
from test.test_asyncio import functional as func_tests
diff --git a/Lib/test/test_asyncio/test_sslproto.py b/Lib/test/test_asyncio/test_sslproto.py
index c716eacfaf..948820c82f 100644
--- a/Lib/test/test_asyncio/test_sslproto.py
+++ b/Lib/test/test_asyncio/test_sslproto.py
@@ -2,7 +2,6 @@
import logging
import socket
-import sys
from test import support
import unittest
import weakref