Clear the current X selection.
(self, **kw)
| 1101 | self.tk.call('option', 'readfile', fileName, priority) |
| 1102 | |
| 1103 | def selection_clear(self, **kw): |
| 1104 | """Clear the current X selection.""" |
| 1105 | if 'displayof' not in kw: kw['displayof'] = self._w |
| 1106 | self.tk.call(('selection', 'clear') + self._options(kw)) |
| 1107 | |
| 1108 | def selection_get(self, **kw): |
| 1109 | """Return the contents of the current X selection. |