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)
| 101 | _markupbase.ParserBase.reset(self) |
| 102 | |
| 103 | def feed(self, data): |
| 104 | r"""Feed data to the parser. |
| 105 | |
| 106 | Call this as often as you want, with as little or as much text |
| 107 | as you want (may include '\n'). |
| 108 | """ |
| 109 | self.rawdata = self.rawdata + data |
| 110 | self.goahead(0) |
| 111 | |
| 112 | def close(self): |
| 113 | """Handle any buffered data.""" |