(*args, **keywargs)
| 1433 | |
| 1434 | @wraps(func) |
| 1435 | def patched(*args, **keywargs): |
| 1436 | with self.decoration_helper(patched, |
| 1437 | args, |
| 1438 | keywargs) as (newargs, newkeywargs): |
| 1439 | return func(*newargs, **newkeywargs) |
| 1440 | |
| 1441 | patched.patchings = [self] |
| 1442 | return patched |
nothing calls this directly
no test coverage detected