(self)
| 558 | self._append_select_control({"__select": d}) |
| 559 | |
| 560 | def end_select(self): |
| 561 | debug("") |
| 562 | if self._select is None: |
| 563 | raise ParseError("end of SELECT before start") |
| 564 | |
| 565 | if self._option is not None: |
| 566 | self._end_option() |
| 567 | |
| 568 | self._select = None |
| 569 | |
| 570 | def start_optgroup(self, attrs): |
| 571 | debug("%s", attrs) |
nothing calls this directly
no test coverage detected