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

Method __init__

Lib/tkinter/ttk.py:919–934  ·  view source on GitHub ↗

Construct a Ttk Panedwindow with parent master. STANDARD OPTIONS class, cursor, style, takefocus WIDGET-SPECIFIC OPTIONS orient, width, height PANE OPTIONS weight

(self, master=None, **kw)

Source from the content-addressed store, hash-verified

917 either vertically or horizontally."""
918
919 def __init__(self, master=None, **kw):
920 """Construct a Ttk Panedwindow with parent master.
921
922 STANDARD OPTIONS
923
924 class, cursor, style, takefocus
925
926 WIDGET-SPECIFIC OPTIONS
927
928 orient, width, height
929
930 PANE OPTIONS
931
932 weight
933 """
934 Widget.__init__(self, master, "ttk::panedwindow", kw)
935
936
937 forget = tkinter.PanedWindow.forget # overrides Pack.forget

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected