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

Method __init__

Lib/tkinter/ttk.py:709–720  ·  view source on GitHub ↗

Construct a Ttk Frame with parent master. STANDARD OPTIONS class, cursor, style, takefocus WIDGET-SPECIFIC OPTIONS borderwidth, relief, padding, width, height

(self, master=None, **kw)

Source from the content-addressed store, hash-verified

707 together."""
708
709 def __init__(self, master=None, **kw):
710 """Construct a Ttk Frame with parent master.
711
712 STANDARD OPTIONS
713
714 class, cursor, style, takefocus
715
716 WIDGET-SPECIFIC OPTIONS
717
718 borderwidth, relief, padding, width, height
719 """
720 Widget.__init__(self, master, "ttk::frame", kw)
721
722
723class Label(Widget):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected