Turn on the internal consistency checks of the B-Tree inside the text widget according to BOOLEAN.
(self, boolean=None)
| 3817 | return res |
| 3818 | |
| 3819 | def debug(self, boolean=None): |
| 3820 | """Turn on the internal consistency checks of the B-Tree inside the text |
| 3821 | widget according to BOOLEAN.""" |
| 3822 | if boolean is None: |
| 3823 | return self.tk.getboolean(self.tk.call(self._w, 'debug')) |
| 3824 | self.tk.call(self._w, 'debug', boolean) |
| 3825 | |
| 3826 | def delete(self, index1, index2=None): |
| 3827 | """Delete the characters between INDEX1 and INDEX2 (not included).""" |