Skip to content

Commit bbc2496

Browse files
authored
feat: reexport reduce (#141)
we already do this for partial, not having reduce is a pain
1 parent f9e3417 commit bbc2496

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

funcy/funcs.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@
77

88

99
__all__ = ['identity', 'constantly', 'caller',
10-
'partial', 'rpartial', 'func_partial',
10+
# reexport functools for convenience
11+
'reduce', 'partial',
12+
'rpartial', 'func_partial',
1113
'curry', 'rcurry', 'autocurry',
1214
'iffy',
1315
'compose', 'rcompose', 'complement', 'juxt', 'ljuxt']

0 commit comments

Comments
 (0)