(state, incorrect_msg=None, exact_names=False)
| 10 | |
| 11 | |
| 12 | def has_context(state, incorrect_msg=None, exact_names=False): |
| 13 | # call _has_context, since the built-in singledispatch can only use 1st pos arg |
| 14 | return _has_context(state, incorrect_msg, exact_names) |
| 15 | |
| 16 | |
| 17 | def _test(state, incorrect_msg, exact_names, tv_name, highlight_name): |