]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Fix __all__.
authorRaymond Hettinger <python@rcn.com>
Sun, 15 Aug 2010 07:41:40 +0000 (07:41 +0000)
committerRaymond Hettinger <python@rcn.com>
Sun, 15 Aug 2010 07:41:40 +0000 (07:41 +0000)
Lib/functools.py

index 0ac83d2bbf3ce9a161335509c162bcdbdb62f48b..c2c228280f08809229e900901c2b3817470e3bd5 100644 (file)
@@ -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