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

Method element_options

Lib/tkinter/ttk.py:455–458  ·  view source on GitHub ↗

Return the list of elementname's options.

(self, elementname)

Source from the content-addressed store, hash-verified

453
454
455 def element_options(self, elementname):
456 """Return the list of elementname's options."""
457 return tuple(o.lstrip('-') for o in self.tk.splitlist(
458 self.tk.call(self._name, "element", "options", elementname)))
459
460
461 def theme_create(self, themename, parent=None, settings=None):

Callers 1

test_element_optionsMethod · 0.80

Calls 3

splitlistMethod · 0.80
lstripMethod · 0.45
callMethod · 0.45

Tested by 1

test_element_optionsMethod · 0.64