MCPcopy Create free account
hub / github.com/RT-Thread/env-windows / __init__

Method __init__

tools/python-3.11.9-amd64/Lib/tkinter/tix.py:1409–1415  ·  view source on GitHub ↗
(self, master=None, cnf={}, **kw)

Source from the content-addressed store, hash-verified

1407 """StdButtonBox - Standard Button Box (OK, Apply, Cancel and Help) """
1408
1409 def __init__(self, master=None, cnf={}, **kw):
1410 TixWidget.__init__(self, master, 'tixStdButtonBox',
1411 ['orientation', 'options'], cnf, kw)
1412 self.subwidget_list['ok'] = _dummyButton(self, 'ok')
1413 self.subwidget_list['apply'] = _dummyButton(self, 'apply')
1414 self.subwidget_list['cancel'] = _dummyButton(self, 'cancel')
1415 self.subwidget_list['help'] = _dummyButton(self, 'help')
1416
1417 def invoke(self, name):
1418 if name in self.subwidget_list:

Callers

nothing calls this directly

Calls 2

_dummyButtonClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected