PyGILState_Release

Release any resources previously acquired. After this call, Python's state will be the same as it was prior to the corresponding PyGILState_Ensure() call (but generally this state will be unknown to the caller, hence the use of the GILState API.)

Every call to PyGILState_Ensure must be matched by a call to PyGILState_Release on the same thread.

extern (C)
void
PyGILState_Release

Meta