Return whether between index INDEX1 and index INDEX2 the relation OP is satisfied. OP is one of <, <=, ==, >=, >, or !=.
(self, index1, op, index2)
| 3781 | self.tk.call(self._w, 'bbox', index)) or None |
| 3782 | |
| 3783 | def compare(self, index1, op, index2): |
| 3784 | """Return whether between index INDEX1 and index INDEX2 the |
| 3785 | relation OP is satisfied. OP is one of <, <=, ==, >=, >, or !=.""" |
| 3786 | return self.tk.getboolean(self.tk.call( |
| 3787 | self._w, 'compare', index1, op, index2)) |
| 3788 | |
| 3789 | def count(self, index1, index2, *options, return_ints=False): # new in Tk 8.5 |
| 3790 | """Counts the number of relevant things between the two indices. |
nothing calls this directly
no test coverage detected