From: Raymond Hettinger Date: Sun, 15 Aug 2010 03:35:24 +0000 (+0000) Subject: Remove unused imports X-Git-Tag: v3.2a2~308 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bc653d1abe8f1a5ea348f0c6f8161ee5899120ba;p=python Remove unused imports --- diff --git a/Lib/functools.py b/Lib/functools.py index efc533cf7d..0ac83d2bbf 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: