summaryrefslogtreecommitdiffstats
path: root/Lib/asyncio/test_utils.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-20 09:37:27 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-02-20 09:37:27 (GMT)
commitb4c9388947b2c93e3ba7d85e828d8667551a71f6 (patch)
tree1e629ecdacf4bc611bfad96ae5bbe35b7107229b /Lib/asyncio/test_utils.py
parent6f24d83ac68fdea3a28cee64d631d7701cf102ae (diff)
downloadcpython-b4c9388947b2c93e3ba7d85e828d8667551a71f6.zip
cpython-b4c9388947b2c93e3ba7d85e828d8667551a71f6.tar.gz
cpython-b4c9388947b2c93e3ba7d85e828d8667551a71f6.tar.bz2
asyncio: remove unused imports and unused variables noticed by pyflakes
Diffstat (limited to 'Lib/asyncio/test_utils.py')
-rw-r--r--Lib/asyncio/test_utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/asyncio/test_utils.py b/Lib/asyncio/test_utils.py
index 2a8a241..dd87789 100644
--- a/Lib/asyncio/test_utils.py
+++ b/Lib/asyncio/test_utils.py
@@ -15,7 +15,7 @@ import unittest
import unittest.mock
from http.server import HTTPServer
-from wsgiref.simple_server import make_server, WSGIRequestHandler, WSGIServer
+from wsgiref.simple_server import WSGIRequestHandler, WSGIServer
try:
import ssl