(self, test, compileflags=None, out=None, clear_globs=True)
| 1963 | """ |
| 1964 | |
| 1965 | def run(self, test, compileflags=None, out=None, clear_globs=True): |
| 1966 | r = DocTestRunner.run(self, test, compileflags, out, False) |
| 1967 | if clear_globs: |
| 1968 | test.globs.clear() |
| 1969 | return r |
| 1970 | |
| 1971 | def report_unexpected_exception(self, out, test, example, exc_info): |
| 1972 | raise UnexpectedException(test, example, exc_info) |
no test coverage detected