Debug a single doctest docstring, in argument `src`
(src, pm=False, globs=None)
| 2815 | return testsrc |
| 2816 | |
| 2817 | def debug_src(src, pm=False, globs=None): |
| 2818 | """Debug a single doctest docstring, in argument `src`""" |
| 2819 | testsrc = script_from_examples(src) |
| 2820 | debug_script(testsrc, pm, globs) |
| 2821 | |
| 2822 | def debug_script(src, pm=False, globs=None): |
| 2823 | "Debug a test script. `src` is the script, as a string." |
nothing calls this directly
no test coverage detected
searching dependent graphs…