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
The function _Py_InitializeRecursionLimits uses GetCurrentThreadStackLimits to get information about thread stack limits, but according to documentations of windows, this API requires Windows 8+, which will cause programs to abort on startup on Windows 7 and earlier:
The procedure entry point GetCurrentThreadStackLimits could not be located in the dynamic link library KERNEL32.dll
It seems there are some workaround for this API on Windows 7, which works fine on my PC. So maybe we can change this API call to a more compatible version?