diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2014-02-20 09:37:27 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2014-02-20 09:37:27 (GMT) |
commit | b4c9388947b2c93e3ba7d85e828d8667551a71f6 (patch) | |
tree | 1e629ecdacf4bc611bfad96ae5bbe35b7107229b /Lib/selectors.py | |
parent | 6f24d83ac68fdea3a28cee64d631d7701cf102ae (diff) | |
download | cpython-b4c9388947b2c93e3ba7d85e828d8667551a71f6.zip cpython-b4c9388947b2c93e3ba7d85e828d8667551a71f6.tar.gz cpython-b4c9388947b2c93e3ba7d85e828d8667551a71f6.tar.bz2 |
asyncio: remove unused imports and unused variables noticed by pyflakes
Diffstat (limited to 'Lib/selectors.py')
-rw-r--r-- | Lib/selectors.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/selectors.py b/Lib/selectors.py index a5465e2..9be9225 100644 --- a/Lib/selectors.py +++ b/Lib/selectors.py @@ -5,9 +5,8 @@ This module allows high-level and efficient I/O multiplexing, built upon the """ -from abc import ABCMeta, abstractmethod, abstractproperty +from abc import ABCMeta, abstractmethod from collections import namedtuple, Mapping -import functools import math import select import sys |