(self, index1, index2=None)
| 83 | self.addcmd(InsertCommand(index, chars, tags)) |
| 84 | |
| 85 | def delete(self, index1, index2=None): |
| 86 | self.addcmd(DeleteCommand(index1, index2)) |
| 87 | |
| 88 | # Clients should call undo_block_start() and undo_block_stop() |
| 89 | # around a sequence of editing cmds to be treated as a unit by |
no test coverage detected