(self, b)
| 365 | return self._buffer.readinto(b) |
| 366 | |
| 367 | def readinto1(self, b): |
| 368 | self._check_not_closed() |
| 369 | self._check_read("readinto1") |
| 370 | return self._buffer.readinto1(b) |
| 371 | |
| 372 | def peek(self, n): |
| 373 | self._check_not_closed() |
nothing calls this directly
no test coverage detected