Push more data into the parser.
(self, data)
| 169 | self._headersonly = True |
| 170 | |
| 171 | def feed(self, data): |
| 172 | """Push more data into the parser.""" |
| 173 | self._input.push(data) |
| 174 | self._call_parse() |
| 175 | |
| 176 | def _call_parse(self): |
| 177 | try: |
no test coverage detected