Read bytes into b. Returns the number of bytes read (0 for EOF).
(self, b)
| 184 | return self._buffer.read1(size) |
| 185 | |
| 186 | def readinto(self, b): |
| 187 | """Read bytes into b. |
| 188 | |
| 189 | Returns the number of bytes read (0 for EOF). |
| 190 | """ |
| 191 | self._check_can_read() |
| 192 | return self._buffer.readinto(b) |
| 193 | |
| 194 | def readline(self, size=-1): |
| 195 | """Read a line of uncompressed bytes from the file. |
no test coverage detected