(self, test, compileflags=None, out=None, clear_globs=True)
| 1877 | """ |
| 1878 | |
| 1879 | def run(self, test, compileflags=None, out=None, clear_globs=True): |
| 1880 | r = DocTestRunner.run(self, test, compileflags, out, False) |
| 1881 | if clear_globs: |
| 1882 | test.globs.clear() |
| 1883 | return r |
| 1884 | |
| 1885 | def report_unexpected_exception(self, out, test, example, exc_info): |
| 1886 | raise UnexpectedException(test, example, exc_info) |
no test coverage detected