(*args, **kwargs)
| 173 | """ |
| 174 | |
| 175 | def func_with_args(*args, **kwargs): |
| 176 | current_scope = current_arg_scope() |
| 177 | current_args = kwargs |
| 178 | key_func = arg_scope_func_key(func) |
| 179 | if key_func in current_scope: |
| 180 | current_args = current_scope[key_func].copy() |
| 181 | current_args.update(kwargs) |
| 182 | return func(*args, **current_args) |
| 183 | |
| 184 | _add_op(func) |
| 185 | setattr(func_with_args, '_key_op', arg_scope_func_key(func)) |
nothing calls this directly
no test coverage detected