| 328 | class PyFileWriter : public mx::io::Writer { |
| 329 | public: |
| 330 | PyFileWriter(nb::object file) |
| 331 | : pyostream_(file), |
| 332 | write_func_(file.attr("write")), |
| 333 | seek_func_(file.attr("seek")), |
| 334 | tell_func_(file.attr("tell")) {} |
| 335 | |
| 336 | ~PyFileWriter() { |
| 337 | nb::gil_scoped_acquire gil; |
nothing calls this directly
no outgoing calls
no test coverage detected