You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
C.Py_Initialize()
C.PyEval_InitThreads()
// .. process is done and start finalizing ...C.PyEval_ReleaseThread(C.PyGILState_GetThisThreadState())
C.Py_Finalize() // -> SIGSEGV
The text was updated successfully, but these errors were encountered:
When call
mainthread.Terminate()
, start finalizing written inmainthread/init.go
andC.Py_Finalize()
is called after releasing GIL state.py/mainthread/init.go
Line 38 in d9ae27c
simple repro code
The text was updated successfully, but these errors were encountered: