(self)
| 534 | self._current_form = (name, action, method, enctype), d, controls |
| 535 | |
| 536 | def end_form(self): |
| 537 | debug("") |
| 538 | if self._current_label is not None: |
| 539 | self.end_label() |
| 540 | if self._current_form is self._global_form: |
| 541 | raise ParseError("end of FORM before start") |
| 542 | self.forms.append(self._current_form) |
| 543 | self._current_form = self._global_form |
| 544 | |
| 545 | def start_select(self, attrs): |
| 546 | debug("%s", attrs) |