| 459 | = p_PyGILState_Ensure() |
| 460 | |
| 461 | /* ------------------------------------------------------------------ */ |
| 462 | /* Singletons */ |
| 463 | /* ------------------------------------------------------------------ */ |
| 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)); |
nothing calls this directly
no test coverage detected