| 131 | } |
| 132 | |
| 133 | size_t tell() override { |
| 134 | size_t out; |
| 135 | { |
| 136 | nb::gil_scoped_acquire gil; |
| 137 | out = nb::cast<size_t>(tell_func_()); |
| 138 | } |
| 139 | return out; |
| 140 | } |
| 141 | |
| 142 | void seek(int64_t off, std::ios_base::seekdir way = std::ios_base::beg) |
| 143 | override { |
nothing calls this directly
no outgoing calls
no test coverage detected