summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2010-08-15 03:35:24 (GMT)
committerRaymond Hettinger <python@rcn.com>2010-08-15 03:35:24 (GMT)
commitbc653d1abe8f1a5ea348f0c6f8161ee5899120ba (patch)
treea258cc0f3f4f1d71a9873ceb5eaeab065d3f62df /Lib
parentf309828175e8db1b858d31dda23bbd984940a08a (diff)
downloadcpython-bc653d1abe8f1a5ea348f0c6f8161ee5899120ba.zip
cpython-bc653d1abe8f1a5ea348f0c6f8161ee5899120ba.tar.gz
cpython-bc653d1abe8f1a5ea348f0c6f8161ee5899120ba.tar.bz2
Remove unused imports
Diffstat (limited to 'Lib')
-rw-r--r--Lib/functools.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/Lib/functools.py b/Lib/functools.py
index efc533c..0ac83d2 100644
--- a/Lib/functools.py
+++ b/Lib/functools.py
@@ -12,9 +12,7 @@ __all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES',
'total_ordering', 'cmp_to_key', 'lfu_cache', 'lru_cache']
from _functools import partial, reduce
-from collections import OrderedDict, Counter
-from heapq import nsmallest
-from operator import itemgetter
+from collections import OrderedDict
try:
from _thread import allocate_lock as Lock
except: