(self, attrs)
| 499 | self._current_form = self._global_form = self.forms[0] |
| 500 | |
| 501 | def do_base(self, attrs): |
| 502 | debug("%s", attrs) |
| 503 | for key, value in attrs: |
| 504 | if key == "href": |
| 505 | self.base = self.unescape_attr_if_required(value) |
| 506 | |
| 507 | def end_body(self): |
| 508 | debug("") |
nothing calls this directly
no test coverage detected