| 71 | class PyFunctionExporter { |
| 72 | public: |
| 73 | PyFunctionExporter(mx::FunctionExporter exporter, nb::handle dep) |
| 74 | : exporter_(std::move(exporter)), dep_(dep) {} |
| 75 | ~PyFunctionExporter() { |
| 76 | nb::gil_scoped_acquire gil; |
| 77 | } |
nothing calls this directly
no outgoing calls
no test coverage detected