(self, n)
| 368 | return self._buffer.readinto1(b) |
| 369 | |
| 370 | def peek(self, n): |
| 371 | self._check_not_closed() |
| 372 | self._check_read("peek") |
| 373 | return self._buffer.peek(n) |
| 374 | |
| 375 | @property |
| 376 | def closed(self): |
nothing calls this directly
no test coverage detected