(self, amt: int = -1)
| 2071 | return chunk_part |
| 2072 | |
| 2073 | def readline(self, amt: int = -1) -> bytes: |
| 2074 | return self.pop_current_chunk(amt, till_crlf=amt < 0) |
| 2075 | |
| 2076 | def read(self, amt: int = -1) -> bytes: |
| 2077 | return self.pop_current_chunk(amt) |
no test coverage detected