(*args, **kwargs)
| 45 | """ |
| 46 | |
| 47 | def new_func(*args, **kwargs): |
| 48 | def processor(stream): |
| 49 | return f(stream, *args, **kwargs) |
| 50 | |
| 51 | return processor |
| 52 | |
| 53 | return update_wrapper(new_func, f) |
| 54 |
nothing calls this directly
no test coverage detected
searching dependent graphs…