(helper)
| 344 | |
| 345 | @staticmethod |
| 346 | def _feed_data(helper): |
| 347 | while True: |
| 348 | chunk = yield |
| 349 | if chunk: |
| 350 | helper.data.extend(chunk) |
| 351 | |
| 352 | if helper.exception: |
| 353 | raise helper.exception |
| 354 | |
| 355 | def feed_data(self, data): |
| 356 | if not self._helper.exception: |