diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-12-26 21:16:42 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-12-26 21:16:42 +0100 |
commit | 6a0b0f8e6fbea4c020f08ff29f73ae437f5700b8 (patch) | |
tree | 58d78246c9de07af7e38480abd0d3c04968713b8 /Lib/test/test_asyncio/test_selector_events.py | |
parent | 5ac6311ccdb07a40027c55bd0992729075dd6c26 (diff) | |
download | cpython-6a0b0f8e6fbea4c020f08ff29f73ae437f5700b8.tar.gz |
asyncio: sync with Tulip
* Fix pyflakes warnings: remove unused imports and variables
* asyncio.test_support now uses test.support and test.script_helper if available
Diffstat (limited to 'Lib/test/test_asyncio/test_selector_events.py')
-rw-r--r-- | Lib/test/test_asyncio/test_selector_events.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_asyncio/test_selector_events.py b/Lib/test/test_asyncio/test_selector_events.py index 8eba56c443..ff114f8290 100644 --- a/Lib/test/test_asyncio/test_selector_events.py +++ b/Lib/test/test_asyncio/test_selector_events.py @@ -1,10 +1,7 @@ """Tests for selector_events.py""" import errno -import gc -import pprint import socket -import sys import unittest from unittest import mock try: |