MCPcopy Create free account
hub / github.com/ActiveState/code / func3

Function func3

recipes/Python/491265_Automatic_Recursion/recipe-491265.py:75–80  ·  view source on GitHub ↗
(a,b=1,c=2,d=3,e=4)

Source from the content-addressed store, hash-verified

73 RECURSE(e=e-1)
74
75def func3(a,b=1,c=2,d=3,e=4):
76 print locals()
77 if e<=0: return
78 else:
79 func3_recurse(locals(),
80 e=e-1 )
81func3_recurse=recursor1(func3)
82
83def func4(a,b=5,*args,**kwargs):

Callers 1

recipe-491265.pyFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected