(func, args, *, debug=False)
| 20 | |
| 21 | |
| 22 | def _format_callback_source(func, args, *, debug=False): |
| 23 | func_repr = _format_callback(func, args, None, debug=debug) |
| 24 | source = _get_function_source(func) |
| 25 | if source: |
| 26 | func_repr += f' at {source[0]}:{source[1]}' |
| 27 | return func_repr |
| 28 | |
| 29 | |
| 30 | def _format_args_and_kwargs(args, kwargs, *, debug=False): |
nothing calls this directly
no test coverage detected
searching dependent graphs…