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

Method __init__

tools/python-3.11.9-amd64/Lib/tkinter/tix.py:1667–1681  ·  view source on GitHub ↗
(self, master, name, destroy_physically=1)

Source from the content-addressed store, hash-verified

1665
1666class _dummyComboBox(ComboBox, TixSubWidget):
1667 def __init__(self, master, name, destroy_physically=1):
1668 TixSubWidget.__init__(self, master, name, ['fancy',destroy_physically])
1669 self.subwidget_list['label'] = _dummyLabel(self, 'label')
1670 self.subwidget_list['entry'] = _dummyEntry(self, 'entry')
1671 self.subwidget_list['arrow'] = _dummyButton(self, 'arrow')
1672
1673 self.subwidget_list['slistbox'] = _dummyScrolledListBox(self,
1674 'slistbox')
1675 try:
1676 self.subwidget_list['tick'] = _dummyButton(self, 'tick')
1677 #cross Button : present if created with the fancy option
1678 self.subwidget_list['cross'] = _dummyButton(self, 'cross')
1679 except TypeError:
1680 # unavailable when -fancy not specified
1681 pass
1682
1683class _dummyDirList(DirList, TixSubWidget):
1684 def __init__(self, master, name, destroy_physically=1):

Callers

nothing calls this directly

Calls 5

_dummyLabelClass · 0.85
_dummyEntryClass · 0.85
_dummyButtonClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected