(self)
| 388 | |
| 389 | @property |
| 390 | def line(self): |
| 391 | self._set_lines() |
| 392 | if self._lines is None: |
| 393 | return None |
| 394 | # return only the first line, stripped |
| 395 | return self._lines.partition("\n")[0].strip() |
| 396 | |
| 397 | |
| 398 | def walk_stack(f): |
nothing calls this directly
no test coverage detected