Internal function.
(self, *args)
| 3030 | self.tk.call((self._w, 'dtag') + args) |
| 3031 | |
| 3032 | def find(self, *args): |
| 3033 | """Internal function.""" |
| 3034 | return self._getints( |
| 3035 | self.tk.call((self._w, 'find') + args)) or () |
| 3036 | |
| 3037 | def find_above(self, tagOrId): |
| 3038 | """Return items above TAGORID.""" |
no test coverage detected