[pywin32-checkins] pywin32/com/win32com/servers test_pycomtest.py, 1.13, 1.14
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2009-06-12 07:49:43
|
Update of /cvsroot/pywin32/pywin32/com/win32com/servers In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28153/com/win32com/servers Modified Files: test_pycomtest.py Log Message: pythoncom gets better support for 64bit integers, including in arrays. Index: test_pycomtest.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/servers/test_pycomtest.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** test_pycomtest.py 9 Jan 2009 01:24:54 -0000 1.13 --- test_pycomtest.py 12 Jun 2009 07:48:33 -0000 1.14 *************** *** 77,80 **** --- 77,86 ---- return len(ints) + def SetLongLongSafeArray(self, ints): + return len(ints) + + def SetULongLongSafeArray(self, ints): + return len(ints) + def SetBinSafeArray(self, buf): return len(buf) |