(self, data)
| 874 | _AbstractFormParser.__init__(self, entitydefs, encoding) |
| 875 | |
| 876 | def feed(self, data): |
| 877 | try: |
| 878 | sgmllib.SGMLParser.feed(self, data) |
| 879 | except SGMLLIB_PARSEERROR as exc: |
| 880 | raise ParseError(exc) |
| 881 | |
| 882 | def close(self): |
| 883 | sgmllib.SGMLParser.close(self) |
no test coverage detected