(self)
| 388 | return self |
| 389 | |
| 390 | def _next_chunk(self) -> bytes: |
| 391 | try: |
| 392 | chunk = next(self.iterable) |
| 393 | self.read_length += len(chunk) |
| 394 | return chunk |
| 395 | except StopIteration: |
| 396 | self.end_reached = True |
| 397 | raise |
| 398 | |
| 399 | def _first_iteration(self) -> tuple[bytes | None, int]: |
| 400 | chunk = None |
no outgoing calls
no test coverage detected