(self, test, compileflags=None, out=None, clear_globs=True)
| 1990 | """ |
| 1991 | |
| 1992 | def run(self, test, compileflags=None, out=None, clear_globs=True): |
| 1993 | r = DocTestRunner.run(self, test, compileflags, out, False) |
| 1994 | if clear_globs: |
| 1995 | test.globs.clear() |
| 1996 | return r |
| 1997 | |
| 1998 | def report_unexpected_exception(self, out, test, example, exc_info): |
| 1999 | raise UnexpectedException(test, example, exc_info) |
no test coverage detected