Debug a single doctest docstring, in argument `src`
(src, pm=False, globs=None)
| 2739 | return testsrc |
| 2740 | |
| 2741 | def debug_src(src, pm=False, globs=None): |
| 2742 | """Debug a single doctest docstring, in argument `src`""" |
| 2743 | testsrc = script_from_examples(src) |
| 2744 | debug_script(testsrc, pm, globs) |
| 2745 | |
| 2746 | def debug_script(src, pm=False, globs=None): |
| 2747 | "Debug a test script. `src` is the script, as a string." |
nothing calls this directly
no test coverage detected