(a,b=1,c=2,d=3,e=4)
| 59 | # examples |
| 60 | |
| 61 | def func1(a,b=1,c=2,d=3,e=4): |
| 62 | print locals() |
| 63 | if e<=0: return |
| 64 | else: |
| 65 | recurse(func1,locals(), |
| 66 | e=e-1 ) # recurse with e changed |
| 67 | |
| 68 | def func2(a,b=1,c=2,d=3,e=4): |
| 69 | RECURSE=recursor(func2,locals()) # freeze it at the beginning |
no test coverage detected