summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-09-10 23:35:52 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-09-10 23:35:52 (GMT)
commit1017ae525321c89492e8f8e54ce49b8197acdf4f (patch)
tree03345c22ced30c5a98e0907bf6cdacd4f5985968
parentc2d76fd339f5fcc4f0051696e5e57c979289a9c3 (diff)
downloadcpython-1017ae525321c89492e8f8e54ce49b8197acdf4f.zip
cpython-1017ae525321c89492e8f8e54ce49b8197acdf4f.tar.gz
cpython-1017ae525321c89492e8f8e54ce49b8197acdf4f.tar.bz2
add reduce and partial to __all__
-rw-r--r--Lib/functools.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/functools.py b/Lib/functools.py
index a723f66..b39e77e 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', 'lru_cache']
+ 'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'partial']
from _functools import partial, reduce
from collections import OrderedDict