[pywin32-checkins] pywin32/win32/src PyHANDLE.cpp,1.14,1.15
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2007-05-25 11:26:00
|
Update of /cvsroot/pywin32/pywin32/win32/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv26384 Modified Files: PyHANDLE.cpp Log Message: Remove 'handle' from memberlist[] - it wasn't used as getattr got there first, and the existing T_INT specification is wrong on x64. Index: PyHANDLE.cpp =================================================================== RCS file: /cvsroot/pywin32/pywin32/win32/src/PyHANDLE.cpp,v retrieving revision 1.14 retrieving revision 1.15 diff -C2 -d -r1.14 -r1.15 *** PyHANDLE.cpp 17 Feb 2007 07:37:47 -0000 1.14 --- PyHANDLE.cpp 25 May 2007 11:25:59 -0000 1.15 *************** *** 169,173 **** /*static*/ struct memberlist PyHANDLE::memberlist[] = { - {"handle", T_INT, OFF(m_handle)}, // @prop integer|handle|The win32 handle itself, as an integer. {NULL} /* Sentinel */ }; --- 169,172 ---- |