summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_asyncio/test_base_events.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-26 10:07:42 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-02-26 10:07:42 (GMT)
commitf5e37037cc14bd30f2a270326852970d46bc648f (patch)
tree22d2178338ea80627aa62354c06acae4c560e9e3 /Lib/test/test_asyncio/test_base_events.py
parent24ba2035048566df2e0876fb719749d984234bc7 (diff)
downloadcpython-f5e37037cc14bd30f2a270326852970d46bc648f.zip
cpython-f5e37037cc14bd30f2a270326852970d46bc648f.tar.gz
cpython-f5e37037cc14bd30f2a270326852970d46bc648f.tar.bz2
asyncio: Fix pyflakes warnings: remove unused variables and imports
Diffstat (limited to 'Lib/test/test_asyncio/test_base_events.py')
-rw-r--r--Lib/test/test_asyncio/test_base_events.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_asyncio/test_base_events.py b/Lib/test/test_asyncio/test_base_events.py
index f7a4e3a..340ca67 100644
--- a/Lib/test/test_asyncio/test_base_events.py
+++ b/Lib/test/test_asyncio/test_base_events.py
@@ -7,7 +7,7 @@ import sys
import time
import unittest
from unittest import mock
-from test.support import find_unused_port, IPV6_ENABLED
+from test.support import IPV6_ENABLED
import asyncio
from asyncio import base_events