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

Function func4

recipes/Python/491265_Automatic_Recursion/recipe-491265.py:83–89  ·  view source on GitHub ↗
(a,b=5,*args,**kwargs)

Source from the content-addressed store, hash-verified

81func3_recurse=recursor1(func3)
82
83def func4(a,b=5,*args,**kwargs):
84 _v=1
85 print locals()
86 if b<=0: return
87 else:
88 recurse_ex(func4,locals(),
89 b=b-1 )
90
91echo_args=None
92def func_with_echo(a,b=1,c=2,d=3,e=4, echo=None):

Callers 1

recipe-491265.pyFile · 0.85

Calls 1

recurse_exFunction · 0.85

Tested by

no test coverage detected