| 682 | public: |
| 683 | PyCustomFunction(nb::callable fun) : fun_(std::move(fun)) {} |
| 684 | ~PyCustomFunction() { |
| 685 | nb::gil_scoped_acquire gil; |
| 686 | reset(); |
| 687 | } |
| 688 | |
| 689 | struct InnerFunction { |
| 690 | nb::callable fun_; |
nothing calls this directly
no outgoing calls
no test coverage detected