Return whether between index INDEX1 and index INDEX2 the relation OP is satisfied. OP is one of <, <=, ==, >=, >, or !=.
(self, index1, op, index2)
| 3863 | self.tk.call(self._w, 'bbox', index)) or None |
| 3864 | |
| 3865 | def compare(self, index1, op, index2): |
| 3866 | """Return whether between index INDEX1 and index INDEX2 the |
| 3867 | relation OP is satisfied. OP is one of <, <=, ==, >=, >, or !=.""" |
| 3868 | return self.tk.getboolean(self.tk.call( |
| 3869 | self._w, 'compare', index1, op, index2)) |
| 3870 | |
| 3871 | def count(self, index1, index2, *options, return_ints=False): # new in Tk 8.5 |
| 3872 | """Counts the number of relevant things between the two indices. |
nothing calls this directly
no test coverage detected