[Python-checkins] r84057 - python/branches/py3k/Lib/functools.py

raymond.hettinger python-checkins at python.org
Sun Aug 15 05:35:24 CEST 2010


Author: raymond.hettinger
Date: Sun Aug 15 05:35:24 2010
New Revision: 84057

Log:
Remove unused imports

Modified:
   python/branches/py3k/Lib/functools.py

Modified: python/branches/py3k/Lib/functools.py
==============================================================================
--- python/branches/py3k/Lib/functools.py	(original)
+++ python/branches/py3k/Lib/functools.py	Sun Aug 15 05:35:24 2010
@@ -12,9 +12,7 @@
            '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:


More information about the Python-checkins mailing list