| 982 | PyGILState_STATE state; |
| 983 | public: |
| 984 | void end() { if (status) { PyGILState_Release(state); status = false;} } |
| 985 | SWIG_Python_Thread_Block() : status(true), state(PyGILState_Ensure()) {} |
| 986 | ~SWIG_Python_Thread_Block() { end(); } |
| 987 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected