6 lines
94 B
Python
6 lines
94 B
Python
from functools import partial
|
|
|
|
|
|
def curry(func, *a, **kw):
|
|
return partial(func, *a, **kw)
|