Update of /cvsroot/pywin32/pywin32/Pythonwin
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv32229/Pythonwin
Modified Files:
Tag: py3k
win32uimodule.cpp
Log Message:
always call OutputDebugStringA
Index: win32uimodule.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/win32uimodule.cpp,v
retrieving revision 1.39.2.12
retrieving revision 1.39.2.13
diff -C2 -d -r1.39.2.12 -r1.39.2.13
*** win32uimodule.cpp 7 Jan 2009 06:27:42 -0000 1.39.2.12
--- win32uimodule.cpp 8 Jan 2009 02:14:14 -0000 1.39.2.13
***************
*** 670,674 ****
char *msg = GetPythonTraceback(type, value, traceback);
if (msg) {
! OutputDebugString(msg);
free(msg);
}
--- 670,674 ----
char *msg = GetPythonTraceback(type, value, traceback);
if (msg) {
! OutputDebugStringA(msg);
free(msg);
}
|