Return bracketing structure of the last interesting statement. The returned tuple is in the format defined in _study2().
(self)
| 576 | return _closere(self.code, self.stmt_start) is not None |
| 577 | |
| 578 | def get_last_stmt_bracketing(self): |
| 579 | """Return bracketing structure of the last interesting statement. |
| 580 | |
| 581 | The returned tuple is in the format defined in _study2(). |
| 582 | """ |
| 583 | self._study2() |
| 584 | return self.stmt_bracketing |
| 585 | |
| 586 | |
| 587 | if __name__ == '__main__': |