diff options
author | Raymond Hettinger <python@rcn.com> | 2010-08-15 07:41:40 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2010-08-15 07:41:40 (GMT) |
commit | 0b5669c0f55501b59aebafcc704ef397861742ce (patch) | |
tree | e971fb2cb88e8829e2d04e2b2b64a652868119b2 /Lib/functools.py | |
parent | 64d010c99064495f32a11e9224741d93a6c903f0 (diff) | |
download | cpython-0b5669c0f55501b59aebafcc704ef397861742ce.zip cpython-0b5669c0f55501b59aebafcc704ef397861742ce.tar.gz cpython-0b5669c0f55501b59aebafcc704ef397861742ce.tar.bz2 |
Fix __all__.
Diffstat (limited to 'Lib/functools.py')
-rw-r--r-- | Lib/functools.py | 2 |
1 files changed, 1 insertions, 1 deletions
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 |