| 370 | } |
| 371 | |
| 372 | void seek(int64_t off, std::ios_base::seekdir way = std::ios_base::beg) |
| 373 | override { |
| 374 | nb::gil_scoped_acquire gil; |
| 375 | seek_func_(off, (int)way); |
| 376 | } |
| 377 | |
| 378 | void write(const char* data, size_t n) override { |
| 379 | nb::gil_scoped_acquire gil; |
nothing calls this directly
no outgoing calls
no test coverage detected