diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2015-01-21 23:39:16 +0100 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2015-01-21 23:39:16 +0100 |
commit | 442b0adccda014e81950a38b1a56e8f06131767a (patch) | |
tree | 5b867834dd07819479c54d31a43e6876d9a6d8cd /Lib/asyncio/selector_events.py | |
parent | cd0f7f9832e6aa8363f85152810738111b9a181d (diff) | |
download | cpython-442b0adccda014e81950a38b1a56e8f06131767a.tar.gz cpython-442b0adccda014e81950a38b1a56e8f06131767a.zip |
asyncio: pyflakes, remove unused import
tests: Remove unused function; inline another function
Diffstat (limited to 'Lib/asyncio/selector_events.py')
-rw-r--r-- | Lib/asyncio/selector_events.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Lib/asyncio/selector_events.py b/Lib/asyncio/selector_events.py index 4d3e5d9ede8..24f8461509a 100644 --- a/Lib/asyncio/selector_events.py +++ b/Lib/asyncio/selector_events.py @@ -10,7 +10,6 @@ import collections import errno import functools import socket -import sys try: import ssl except ImportError: # pragma: no cover |