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

Method keys

Lib/tkinter/__init__.py:1835–1839  ·  view source on GitHub ↗

Return a list of all resource names of this widget.

(self)

Source from the content-addressed store, hash-verified

1833 self.configure({key: value})
1834
1835 def keys(self):
1836 """Return a list of all resource names of this widget."""
1837 splitlist = self.tk.splitlist
1838 return [splitlist(x)[0][1:] for x in
1839 splitlist(self.tk.call(self._w, 'configure'))]
1840
1841 def __str__(self):
1842 """Return the window path name of this widget."""

Callers 2

__init__Method · 0.45
__init__Method · 0.45

Calls 1

callMethod · 0.45

Tested by

no test coverage detected