add reduce and partial to __all__

This commit is contained in:
Benjamin Peterson 2010-09-10 23:35:52 +00:00
parent c2d76fd339
commit 1017ae5253
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
# See C source code for _functools credits/copyright # See C source code for _functools credits/copyright
__all__ = ['update_wrapper', 'wraps', 'WRAPPER_ASSIGNMENTS', 'WRAPPER_UPDATES', __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 _functools import partial, reduce
from collections import OrderedDict from collections import OrderedDict