(self)
| 578 | self._optgroup = d |
| 579 | |
| 580 | def end_optgroup(self): |
| 581 | debug("") |
| 582 | if self._optgroup is None: |
| 583 | raise ParseError("end of OPTGROUP before start") |
| 584 | self._optgroup = None |
| 585 | |
| 586 | def _start_option(self, attrs): |
| 587 | debug("%s", attrs) |
nothing calls this directly
no test coverage detected