Print the traceback purely on stdout for doctest to capture it.
(self, etype, evalue, stb)
| 41 | |
| 42 | |
| 43 | def _showtraceback(self, etype, evalue, stb): |
| 44 | """Print the traceback purely on stdout for doctest to capture it. |
| 45 | """ |
| 46 | print(self.InteractiveTB.stb2text(stb), file=sys.stdout) |
| 47 | |
| 48 | |
| 49 | def start_ipython(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…