| 113 | } |
| 114 | |
| 115 | bool is_open() const override { |
| 116 | bool out; |
| 117 | { |
| 118 | nb::gil_scoped_acquire gil; |
| 119 | out = !nb::cast<bool>(pyistream_.attr("closed")); |
| 120 | } |
| 121 | return out; |
| 122 | } |
| 123 | |
| 124 | bool good() const override { |
| 125 | bool out; |
nothing calls this directly
no outgoing calls
no test coverage detected