| 1045 | if (!instance) { |
| 1046 | lean_dec(closure); |
| 1047 | return raise_py_error(); |
| 1048 | } |
| 1049 | LeanCallableObject *self = (LeanCallableObject *)instance; |
| 1050 | self->closure = closure; /* owned */ |
| 1051 | self->has_kw = has_kw; |
| 1052 | return lean_io_result_mk_ok(wrap_pyobject(instance)); |
| 1053 | } |
nothing calls this directly
no test coverage detected