| 426 | } |
| 427 | |
| 428 | LEAN_EXPORT lean_obj_res lean_py_is_initialized(lean_obj_arg unit, lean_obj_arg world) { |
| 429 | (void)world; |
| 430 | uint8_t v = py_initialized ? 1 : 0; |
| 431 | return lean_io_result_mk_ok(lean_box(v)); |
| 432 | } |
| 433 | |
| 434 | /* ------------------------------------------------------------------ */ |
| 435 | /* Helpers */ |
nothing calls this directly
no test coverage detected