From 0b5669c0f55501b59aebafcc704ef397861742ce Mon Sep 17 00:00:00 2001 From: Raymond Hettinger Date: Sun, 15 Aug 2010 07:41:40 +0000 Subject: Fix __all__. --- Lib/functools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/functools.py b/Lib/functools.py index 0ac83d2..c2c2282 100644 --- a/Lib/functools.py +++ b/Lib/functools.py @@ -9,7 +9,7 @@ # See C source code for _functools credits/copyright __all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES', - 'total_ordering', 'cmp_to_key', 'lfu_cache', 'lru_cache'] + 'total_ordering', 'cmp_to_key', 'lru_cache'] from _functools import partial, reduce from collections import OrderedDict -- cgit v0.12