(self, encoding=None, _type='application/xhtml+xml')
| 87 | } |
| 88 | |
| 89 | def __init__(self, encoding=None, _type='application/xhtml+xml'): |
| 90 | if encoding: |
| 91 | self.encoding = encoding |
| 92 | self._type = _type |
| 93 | self.pieces = [] |
| 94 | super(_BaseHTMLProcessor, self).__init__() |
| 95 | |
| 96 | def reset(self): |
| 97 | self.pieces = [] |
nothing calls this directly
no outgoing calls
no test coverage detected