summaryrefslogtreecommitdiffstats
path: root/Lib/selectors.py
diff options
context:
space:
mode:
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