Clear the current X selection.
(self, **kw)
| 1119 | self.tk.call('option', 'readfile', fileName, priority) |
| 1120 | |
| 1121 | def selection_clear(self, **kw): |
| 1122 | """Clear the current X selection.""" |
| 1123 | if 'displayof' not in kw: kw['displayof'] = self._w |
| 1124 | self.tk.call(('selection', 'clear') + self._options(kw)) |
| 1125 | |
| 1126 | def selection_get(self, **kw): |
| 1127 | """Return the contents of the current X selection. |