(self, attrs)
| 743 | controls.append((type, name, d)) |
| 744 | |
| 745 | def do_isindex(self, attrs): |
| 746 | debug("%s", attrs) |
| 747 | d = {} |
| 748 | for key, val in attrs: |
| 749 | d[key] = self.unescape_attr_if_required(val) |
| 750 | controls = self._current_form[2] |
| 751 | |
| 752 | self._add_label(d) |
| 753 | # isindex doesn't have type or name HTML attributes |
| 754 | controls.append(("isindex", None, d)) |
| 755 | |
| 756 | def handle_entityref(self, name): |
| 757 | #debug("%s", name) |
nothing calls this directly
no test coverage detected