Private API. force all lines in the stack to be loaded.
(self)
| 1265 | return stype |
| 1266 | |
| 1267 | def _load_lines(self): |
| 1268 | """Private API. force all lines in the stack to be loaded.""" |
| 1269 | for frame in self.stack: |
| 1270 | frame.line |
| 1271 | |
| 1272 | def __eq__(self, other): |
| 1273 | if isinstance(other, TracebackException): |