(a,b=5,*args,**kwargs)
| 81 | func3_recurse=recursor1(func3) |
| 82 | |
| 83 | def 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 | |
| 91 | echo_args=None |
| 92 | def func_with_echo(a,b=1,c=2,d=3,e=4, echo=None): |
no test coverage detected