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

Class Class

recipes/Python/491265_Automatic_Recursion/recipe-491265.py:101–107  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

99 echo=1)
100
101class Class:
102 def meth(self,a,b=1,c=2):
103 print locals()
104 if c<=0: return
105 else:
106 recurse(Class.meth,locals(),
107 c=c-1)
108
109if __name__=='__main__':
110 myfunc('myfunc')

Callers 1

recipe-491265.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected