[pywin32-checkins] pywin32/win32/src win32consolemodule.cpp, 1.13.2.1, 1.13.2.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Roger U. <ru...@us...> - 2008-10-07 15:31:36
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv3864 Modified Files: Tag: py3k win32consolemodule.cpp Log Message: Return console window handle as plaint int Index: win32consolemodule.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/win32consolemodule.cpp,v retrieving revision 1.13.2.1 retrieving revision 1.13.2.2 diff -C2 -d -r1.13.2.1 -r1.13.2.2 *** win32consolemodule.cpp 29 Aug 2008 04:59:26 -0000 1.13.2.1 --- win32consolemodule.cpp 7 Oct 2008 15:28:49 -0000 1.13.2.2 *************** *** 1912,1916 **** return NULL; h=(*pfnGetConsoleWindow)(); ! return PyWinObject_FromHANDLE(h); } --- 1912,1916 ---- return NULL; h=(*pfnGetConsoleWindow)(); ! return PyWinLong_FromHANDLE(h); } |