Read bytes into b. Returns the number of bytes read (0 for EOF).
(self, b)
| 176 | return self._buffer.read1(size) |
| 177 | |
| 178 | def readinto(self, b): |
| 179 | """Read bytes into b. |
| 180 | |
| 181 | Returns the number of bytes read (0 for EOF). |
| 182 | """ |
| 183 | self._check_can_read() |
| 184 | return self._buffer.readinto(b) |
| 185 | |
| 186 | def readline(self, size=-1): |
| 187 | """Read a line of uncompressed bytes from the file. |
no test coverage detected