(*args)
| 61 | |
| 62 | def change(func): |
| 63 | def new(*args): |
| 64 | args[0].unchanged = False |
| 65 | args[0].filecount = -1 |
| 66 | args[0].queuecount = -1 |
| 67 | args[0].jobCache = {} |
| 68 | return func(*args) |
| 69 | return new |
| 70 | |
| 71 | #---------------------------------------------------------------------- |
no outgoing calls
no test coverage detected