Convert a structured traceback (a list) to a string.
(self, stb)
| 1482 | return e |
| 1483 | |
| 1484 | def stb2text(self, stb): |
| 1485 | """Convert a structured traceback (a list) to a string.""" |
| 1486 | return ''.join(stb) |
| 1487 | |
| 1488 | |
| 1489 | # some internal-use functions |
nothing calls this directly
no outgoing calls
no test coverage detected