]> granicus.if.org Git - python/commitdiff
add reduce and partial to __all__
authorBenjamin Peterson <benjamin@python.org>
Fri, 10 Sep 2010 23:35:52 +0000 (23:35 +0000)
committerBenjamin Peterson <benjamin@python.org>
Fri, 10 Sep 2010 23:35:52 +0000 (23:35 +0000)
Lib/functools.py

index a723f66a3c5893ae74a7c4710535e98e645270a6..b39e77eb6167a51bbbfd9c7a7050a1889a4d54b0 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', 'lru_cache']
+           'total_ordering', 'cmp_to_key', 'lru_cache', 'reduce', 'partial']
 
 from _functools import partial, reduce
 from collections import OrderedDict