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

Method __init__

Lib/tkinter/ttk.py:672–684  ·  view source on GitHub ↗

Construct a Ttk Combobox widget with the parent master. STANDARD OPTIONS class, cursor, style, takefocus WIDGET-SPECIFIC OPTIONS exportselection, justify, height, postcommand, state, textvariable, values, width

(self, master=None, **kw)

Source from the content-addressed store, hash-verified

670 values."""
671
672 def __init__(self, master=None, **kw):
673 """Construct a Ttk Combobox widget with the parent master.
674
675 STANDARD OPTIONS
676
677 class, cursor, style, takefocus
678
679 WIDGET-SPECIFIC OPTIONS
680
681 exportselection, justify, height, postcommand, state,
682 textvariable, values, width
683 """
684 Entry.__init__(self, master, "ttk::combobox", **kw)
685
686
687 def current(self, newindex=None):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected