(self, chunk: bytes)
| 3247 | return chunk |
| 3248 | |
| 3249 | def append(self, chunk: bytes) -> None: |
| 3250 | self._chunks.append(chunk) |
| 3251 | self._chunk_event.set() |
| 3252 | |
| 3253 | def _read(self, size: int | None = None) -> bytes: |
| 3254 | if size is None: |
no outgoing calls
no test coverage detected