(self, master, cnf={}, **kw)
| 1356 | |
| 1357 | # FIXME: It should inherit -superclass tixLabelWidget |
| 1358 | def __init__(self, master, cnf={}, **kw): |
| 1359 | TixWidget.__init__(self, master, 'tixSelect', |
| 1360 | ['allowzero', 'radio', 'orientation', 'labelside', |
| 1361 | 'options'], |
| 1362 | cnf, kw) |
| 1363 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 1364 | |
| 1365 | def add(self, name, cnf={}, **kw): |
| 1366 | self.tk.call(self._w, 'add', name, *self._options(cnf, kw)) |
nothing calls this directly
no test coverage detected