(*args,**kw)
| 39 | return func |
| 40 | |
| 41 | def wrapper(*args,**kw): |
| 42 | wrapper.called = False |
| 43 | out = func(*args,**kw) |
| 44 | wrapper.called = True |
| 45 | return out |
| 46 | |
| 47 | wrapper.called = False |
| 48 | wrapper.__doc__ = func.__doc__ |
nothing calls this directly
no outgoing calls
no test coverage detected