r"""Feed data to the parser. Call this as often as you want, with as little or as much text as you want (may include '\n').
(self, data)
| 160 | super().reset() |
| 161 | |
| 162 | def feed(self, data): |
| 163 | r"""Feed data to the parser. |
| 164 | |
| 165 | Call this as often as you want, with as little or as much text |
| 166 | as you want (may include '\n'). |
| 167 | """ |
| 168 | self.rawdata = self.rawdata + data |
| 169 | self.goahead(0) |
| 170 | |
| 171 | def close(self): |
| 172 | """Handle any buffered data.""" |