(self, widget)
| 1294 | self.tk.call(self._w, 'hide', widget._w) |
| 1295 | |
| 1296 | def show(self, widget): |
| 1297 | self.tk.call(self._w, 'show', widget._w) |
| 1298 | |
| 1299 | class ScrolledHList(TixWidget): |
| 1300 | """ScrolledHList - HList with automatic scrollbars.""" |
no test coverage detected