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

Method __init__

Lib/tkinter/ttk.py:981–992  ·  view source on GitHub ↗

Construct a Ttk Progressbar with parent master. STANDARD OPTIONS class, cursor, style, takefocus WIDGET-SPECIFIC OPTIONS orient, length, mode, maximum, value, variable, phase

(self, master=None, **kw)

Source from the content-addressed store, hash-verified

979 that something is happening."""
980
981 def __init__(self, master=None, **kw):
982 """Construct a Ttk Progressbar with parent master.
983
984 STANDARD OPTIONS
985
986 class, cursor, style, takefocus
987
988 WIDGET-SPECIFIC OPTIONS
989
990 orient, length, mode, maximum, value, variable, phase
991 """
992 Widget.__init__(self, master, "ttk::progressbar", kw)
993
994
995 def start(self, interval=None):

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected