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