(self)
| 97 | # _start() call is matched by a _stop() call. |
| 98 | |
| 99 | def undo_block_start(self): |
| 100 | if self.undoblock == 0: |
| 101 | self.undoblock = CommandSequence() |
| 102 | self.undoblock.bump_depth() |
| 103 | |
| 104 | def undo_block_stop(self): |
| 105 | if self.undoblock.bump_depth(-1) == 0: |
no test coverage detected