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

Method selection_own

Lib/tkinter/__init__.py:1142–1148  ·  view source on GitHub ↗

Become owner of X selection. A keyword parameter selection specifies the name of the selection (default PRIMARY).

(self, **kw)

Source from the content-addressed store, hash-verified

1140 + (self._w, name))
1141
1142 def selection_own(self, **kw):
1143 """Become owner of X selection.
1144
1145 A keyword parameter selection specifies the name of
1146 the selection (default PRIMARY)."""
1147 self.tk.call(('selection', 'own') +
1148 self._options(kw) + (self._w,))
1149
1150 def selection_own_get(self, **kw):
1151 """Return owner of X selection.

Callers

nothing calls this directly

Calls 2

_optionsMethod · 0.95
callMethod · 0.45

Tested by

no test coverage detected