(state, incorrect_msg, exact_names)
| 44 | |
| 45 | @singledispatch |
| 46 | def _has_context(state, incorrect_msg, exact_names): |
| 47 | with debugger(state): |
| 48 | state.report( |
| 49 | "first argument to _has_context must be a State instance or subclass" |
| 50 | ) |
| 51 | |
| 52 | |
| 53 | @_has_context.register(State) |
no outgoing calls
no test coverage detected