Method
__init__
(self, entitydefs=None, encoding=DEFAULT_ENCODING)
Source from the content-addressed store, hash-verified
| 870 | class FormParser(_AbstractSgmllibParser, sgmllib.SGMLParser): |
| 871 | """Good for tolerance of incorrect HTML, bad for XHTML.""" |
| 872 | def __init__(self, entitydefs=None, encoding=DEFAULT_ENCODING): |
| 873 | sgmllib.SGMLParser.__init__(self) |
| 874 | _AbstractFormParser.__init__(self, entitydefs, encoding) |
| 875 | |
| 876 | def feed(self, data): |
| 877 | try: |
Callers
nothing calls this directly
Tested by
no test coverage detected