(self)
| 372 | |
| 373 | @property |
| 374 | def line(self): |
| 375 | self._set_lines() |
| 376 | if self._lines is None: |
| 377 | return None |
| 378 | # return only the first line, stripped |
| 379 | return self._lines.partition("\n")[0].strip() |
| 380 | |
| 381 | |
| 382 | def walk_stack(f): |
no test coverage detected