MCPcopy Index your code
hub / github.com/python/cpython / selection_own

Method selection_own

Lib/tkinter/__init__.py:1160–1166  ·  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

1158 + (self._w, name))
1159
1160 def selection_own(self, **kw):
1161 """Become owner of X selection.
1162
1163 A keyword parameter selection specifies the name of
1164 the selection (default PRIMARY)."""
1165 self.tk.call(('selection', 'own') +
1166 self._options(kw) + (self._w,))
1167
1168 def selection_own_get(self, **kw):
1169 """Return owner of X selection.

Callers

nothing calls this directly

Calls 2

_optionsMethod · 0.95
callMethod · 0.45

Tested by

no test coverage detected