MCPcopy Index your code
hub / github.com/RustPython/RustPython / selection_clear

Method selection_clear

Lib/tkinter/__init__.py:1103–1106  ·  view source on GitHub ↗

Clear the current X selection.

(self, **kw)

Source from the content-addressed store, hash-verified

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.

Callers

nothing calls this directly

Calls 2

_optionsMethod · 0.95
callMethod · 0.45

Tested by

no test coverage detected