summaryrefslogtreecommitdiffstats
path: root/Lib/selectors.py
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2014-02-20 09:37:27 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2014-02-20 09:37:27 (GMT)
commitda492a8c39f8d7509de5f3f14d0b957a32fc66ea (patch)
treeb9bc28caf2d509928deb1a2c23f186f138388aaf /Lib/selectors.py
parent2c7203c6f5464e2bcb3d7e11acf714a29a5b0187 (diff)
downloadcpython-da492a8c39f8d7509de5f3f14d0b957a32fc66ea.zip
cpython-da492a8c39f8d7509de5f3f14d0b957a32fc66ea.tar.gz
cpython-da492a8c39f8d7509de5f3f14d0b957a32fc66ea.tar.bz2
asyncio: remove unused imports and unused variables noticed by pyflakes
Diffstat (limited to 'Lib/selectors.py')
-rw-r--r--Lib/selectors.py3
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