Update of /cvsroot/pywin32/pywin32/win32/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7602
Modified Files:
PyWinTypesmodule.cpp
Log Message:
Make it a little clearer we are calling Py_FatalError
Index: PyWinTypesmodule.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/PyWinTypesmodule.cpp,v
retrieving revision 1.20
retrieving revision 1.21
diff -C2 -d -r1.20 -r1.21
*** PyWinTypesmodule.cpp 1 Jun 2006 07:58:07 -0000 1.20
--- PyWinTypesmodule.cpp 2 Jul 2006 06:44:46 -0000 1.21
***************
*** 126,130 ****
PyThreadState *threadStateSave = PyThreadState_Swap(NULL);
if (threadStateSave==NULL)
! Py_FatalError("Can not setup interpreter state, as current state is invalid");
PyWin_InterpreterState = threadStateSave->interp;
--- 126,130 ----
PyThreadState *threadStateSave = PyThreadState_Swap(NULL);
if (threadStateSave==NULL)
! Py_FatalError("pywintypes: can not setup interpreter state, as current state is invalid");
PyWin_InterpreterState = threadStateSave->interp;
|