Adds a string to the end of the current JSON document
(self, s)
| 2251 | other_state.chunks = [] |
| 2252 | |
| 2253 | def append(self, s): |
| 2254 | """Adds a string to the end of the current JSON document""" |
| 2255 | self.chunks.append(s) |
| 2256 | |
| 2257 | def combine(self): |
| 2258 | """Returns the accumulated string and resets the state to empty""" |
no outgoing calls