(self)
| 219 | return self.lineno - self.frame.code.firstlineno |
| 220 | |
| 221 | def __repr__(self) -> str: |
| 222 | return "<TracebackEntry %s:%d>" % (self.frame.code.path, self.lineno + 1) |
| 223 | |
| 224 | @property |
| 225 | def statement(self) -> "Source": |
nothing calls this directly
no outgoing calls
no test coverage detected