Convert a structured traceback (a list) to a string.
(self, stb)
| 574 | self.Colors = self.color_scheme_table.active_colors |
| 575 | |
| 576 | def stb2text(self, stb): |
| 577 | """Convert a structured traceback (a list) to a string.""" |
| 578 | return '\n'.join(stb) |
| 579 | |
| 580 | def text(self, etype, value, tb, tb_offset=None, context=5): |
| 581 | """Return formatted traceback. |
no outgoing calls
no test coverage detected