| 454 | p_PyGILState_Release(*st); |
| 455 | } |
| 456 | #define WITH_GIL() \ |
| 457 | PyGILState_STATE _gil_state \ |
| 458 | __attribute__((cleanup(_leanpy_gil_release))) \ |
| 459 | = p_PyGILState_Ensure() |
| 460 | |
| 461 | /* ------------------------------------------------------------------ */ |
| 462 | /* Singletons */ |
| 463 | /* ------------------------------------------------------------------ */ |
nothing calls this directly
no test coverage detected