| 464 | |
| 465 | LEAN_EXPORT lean_obj_res lean_py_none(lean_obj_arg unit, lean_obj_arg world) { |
| 466 | (void)world; ENSURE_INIT(); WITH_GIL(); |
| 467 | p_Py_IncRef(p_Py_None); |
| 468 | return lean_io_result_mk_ok(wrap_pyobject(p_Py_None)); |
| 469 | } |
| 470 | LEAN_EXPORT lean_obj_res lean_py_true(lean_obj_arg unit, lean_obj_arg world) { |
| 471 | (void)world; ENSURE_INIT(); WITH_GIL(); |
| 472 | p_Py_IncRef(p_Py_True); |
| 473 | return lean_io_result_mk_ok(wrap_pyobject(p_Py_True)); |
nothing calls this directly
no test coverage detected