commit | 0b5669c0f55501b59aebafcc704ef397861742ce | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun Aug 15 07:41:40 2010 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sun Aug 15 07:41:40 2010 +0000 |
tree | e971fb2cb88e8829e2d04e2b2b64a652868119b2 | |
parent | 64d010c99064495f32a11e9224741d93a6c903f0 [diff] [blame] |
Fix __all__.
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