(self, size=-1)
| 385 | return self.base_stream.readinto(b) # type: ignore[attr-defined] |
| 386 | |
| 387 | def read(self, size=-1): |
| 388 | return self.base_stream.read(size) |
| 389 | |
| 390 | |
| 391 | def _create_file_view(file: io.IOBase, offset: int, length: int) -> io.IOBase: |
no outgoing calls