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