| 146 | // --------------------------------------------- |
| 147 | |
| 148 | global_interpreter_lock::global_interpreter_lock() |
| 149 | { |
| 150 | initialize(); // Make sure Python is running |
| 151 | m_gil_state = PyGILState_Ensure(); |
| 152 | } |
| 153 | |
| 154 | global_interpreter_lock::~global_interpreter_lock() |
| 155 | { |
nothing calls this directly
no test coverage detected