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

Method keys

Lib/tkinter/__init__.py:1869–1873  ·  view source on GitHub ↗

Return a list of all option names of this widget.

(self)

Source from the content-addressed store, hash-verified

1867 self.configure({key: value})
1868
1869 def keys(self):
1870 """Return a list of all option names of this widget."""
1871 splitlist = self.tk.splitlist
1872 return [splitlist(x)[0][1:] for x in
1873 splitlist(self.tk.call(self._w, 'configure'))]
1874
1875 def __str__(self):
1876 """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