From: Benjamin Peterson Date: Fri, 10 Sep 2010 23:35:52 +0000 (+0000) Subject: add reduce and partial to __all__ X-Git-Tag: v3.2a3~331 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1017ae525321c89492e8f8e54ce49b8197acdf4f;p=thirdparty%2FPython%2Fcpython.git add reduce and partial to __all__ --- diff --git a/Lib/functools.py b/Lib/functools.py index a723f66a3c58..b39e77eb6167 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