(a,b=1,c=2,d=3,e=4)
| 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 |
| 70 | print locals() |
| 71 | if e<=0: return |
| 72 | else: |
| 73 | RECURSE(e=e-1) |
| 74 | |
| 75 | def func3(a,b=1,c=2,d=3,e=4): |
| 76 | print locals() |
no test coverage detected