From: Raymond Hettinger Date: Sun, 15 Aug 2010 07:41:40 +0000 (+0000) Subject: Fix __all__. X-Git-Tag: v3.2a2~306 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0b5669c0f55501b59aebafcc704ef397861742ce;p=thirdparty%2FPython%2Fcpython.git Fix __all__. --- diff --git a/Lib/functools.py b/Lib/functools.py index 0ac83d2bbf3c..c2c228280f08 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