Private API. force all lines in the stack to be loaded.
(self)
| 1211 | return stype |
| 1212 | |
| 1213 | def _load_lines(self): |
| 1214 | """Private API. force all lines in the stack to be loaded.""" |
| 1215 | for frame in self.stack: |
| 1216 | frame.line |
| 1217 | |
| 1218 | def __eq__(self, other): |
| 1219 | if isinstance(other, TracebackException): |