Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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---
2
lcurry =
lambda
func, *args, **kw:\
3
lambda
*p, **n:\
4
func(*args + p, **dict(kw.items() + n.items()))
Callers
nothing calls this directly
Calls
3
func
Function · 0.50
dict
Class · 0.50
items
Method · 0.45
Tested by
no test coverage detected