Return the current error state and clear it
(self)
| 1476 | tb_offset=tb_offset, context=context) |
| 1477 | |
| 1478 | def clear_err_state(self): |
| 1479 | """Return the current error state and clear it""" |
| 1480 | e = self.last_syntax_error |
| 1481 | self.last_syntax_error = None |
| 1482 | return e |
| 1483 | |
| 1484 | def stb2text(self, stb): |
| 1485 | """Convert a structured traceback (a list) to a string.""" |
nothing calls this directly
no outgoing calls
no test coverage detected