Add separator.
(self, cnf={}, **kw)
| 3601 | self.add('radiobutton', cnf or kw) |
| 3602 | |
| 3603 | def add_separator(self, cnf={}, **kw): |
| 3604 | """Add separator.""" |
| 3605 | self.add('separator', cnf or kw) |
| 3606 | |
| 3607 | def insert(self, index, itemType, cnf={}, **kw): |
| 3608 | """Internal function.""" |
no test coverage detected