Convert a structured traceback (a list) to a string.
(self, stb)
| 1347 | ) |
| 1348 | |
| 1349 | def stb2text(self, stb): |
| 1350 | """Convert a structured traceback (a list) to a string.""" |
| 1351 | return self.tb_join_char.join(stb) |
| 1352 | |
| 1353 | |
| 1354 | def set_mode(self, mode=None): |
nothing calls this directly
no outgoing calls
no test coverage detected