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 | d7ff5a5375cc23dff10f91696ac4895971c5850c (patch) | |
tree | 3e1bb190939315eeadb62f660f1d48f1e9e735b0 /Lib/test/test_asyncio/test_selector_events.py | |
parent | fe02e3902920181b76e7e7a9c761209b7ddb1be1 (diff) | |
download | cpython-git-d7ff5a5375cc23dff10f91696ac4895971c5850c.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: |