| 152 | } |
| 153 | |
| 154 | global_interpreter_lock::~global_interpreter_lock() |
| 155 | { |
| 156 | if (is_active()) { |
| 157 | PyGILState_Release(static_cast<PyGILState_STATE>(m_gil_state)); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | // --------------------------------------------- |
| 162 | // object class |
nothing calls this directly
no test coverage detected