(self, test, compileflags=None, out=None, clear_globs=True)
| 293 | """ |
| 294 | |
| 295 | def run(self, test, compileflags=None, out=None, clear_globs=True): |
| 296 | # Override terminal size to standardise traceback format |
| 297 | with modified_env({'COLUMNS': '80', 'LINES': '24'}): |
| 298 | return super(IPDocTestRunner,self).run(test, |
| 299 | compileflags,out,clear_globs) |