| 361 | } |
| 362 | |
| 363 | size_t tell() override { |
| 364 | size_t out; |
| 365 | { |
| 366 | nb::gil_scoped_acquire gil; |
| 367 | out = nb::cast<size_t>(tell_func_()); |
| 368 | } |
| 369 | return out; |
| 370 | } |
| 371 | |
| 372 | void seek(int64_t off, std::ios_base::seekdir way = std::ios_base::beg) |
| 373 | override { |
nothing calls this directly
no outgoing calls
no test coverage detected