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

Method __init__

Lib/tkinter/ttk.py:630–646  ·  view source on GitHub ↗

Constructs a Ttk Entry widget with the parent master. STANDARD OPTIONS class, cursor, style, takefocus, xscrollcommand WIDGET-SPECIFIC OPTIONS exportselection, invalidcommand, justify, show, state, textvariable, validate, validatecommand, width

(self, master=None, widget=None, **kw)

Source from the content-addressed store, hash-verified

628 string to be edited by the user."""
629
630 def __init__(self, master=None, widget=None, **kw):
631 """Constructs a Ttk Entry widget with the parent master.
632
633 STANDARD OPTIONS
634
635 class, cursor, style, takefocus, xscrollcommand
636
637 WIDGET-SPECIFIC OPTIONS
638
639 exportselection, invalidcommand, justify, show, state,
640 textvariable, validate, validatecommand, width
641
642 VALIDATION MODES
643
644 none, key, focus, focusin, focusout, all
645 """
646 Widget.__init__(self, master, widget or "ttk::entry", kw)
647
648
649 def bbox(self, index):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected