MCPcopy Create free account
hub / github.com/ActiveState/code / recipe-222061.py

File recipe-222061.py

recipes/Python/222061_another_curry/recipe-222061.py:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1#---------------------------------------------------------------curry---
2lcurry = lambda func, *args, **kw:\
3 lambda *p, **n:\
4 func(*args + p, **dict(kw.items() + n.items()))

Callers

nothing calls this directly

Calls 3

funcFunction · 0.50
dictClass · 0.50
itemsMethod · 0.45

Tested by

no test coverage detected