Debug a single doctest docstring, in argument `src`
(src, pm=False, globs=None)
| 2650 | return testsrc |
| 2651 | |
| 2652 | def debug_src(src, pm=False, globs=None): |
| 2653 | """Debug a single doctest docstring, in argument `src`'""" |
| 2654 | testsrc = script_from_examples(src) |
| 2655 | debug_script(testsrc, pm, globs) |
| 2656 | |
| 2657 | def debug_script(src, pm=False, globs=None): |
| 2658 | "Debug a test script. `src` is the script, as a string." |
nothing calls this directly
no test coverage detected