Update of /cvsroot/pywin32/pywin32/win32/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv22405/src
Modified Files:
PyHANDLE.cpp
Log Message:
Use _Py_HashPointer
Index: PyHANDLE.cpp
===================================================================
RCS file: /cvsroot/pywin32/pywin32/win32/src/PyHANDLE.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** PyHANDLE.cpp 19 Feb 2006 12:16:35 -0000 1.11
--- PyHANDLE.cpp 22 Sep 2006 14:32:33 -0000 1.12
***************
*** 279,283 ****
{
// Just use the address.
! return (long)this;
}
--- 279,283 ----
{
// Just use the address.
! return _Py_HashPointer(this);
}
|