(*args, **keywargs)
| 1426 | |
| 1427 | @wraps(func) |
| 1428 | def patched(*args, **keywargs): |
| 1429 | with self.decoration_helper(patched, |
| 1430 | args, |
| 1431 | keywargs) as (newargs, newkeywargs): |
| 1432 | return func(*newargs, **newkeywargs) |
| 1433 | |
| 1434 | patched.patchings = [self] |
| 1435 | return patched |
nothing calls this directly
no test coverage detected