Return True if the last interesting statement opens a block.
(self)
| 566 | return code[i:j] |
| 567 | |
| 568 | def is_block_opener(self): |
| 569 | "Return True if the last interesting statement opens a block." |
| 570 | self._study2() |
| 571 | return self.lastch == ':' |
| 572 | |
| 573 | def is_block_closer(self): |
| 574 | "Return True if the last interesting statement closes a block." |
no test coverage detected