[pywin32-checkins] pywin32/com/win32com/test testPyComTest.py, 1.45, 1.46
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2009-06-12 07:49:39
|
Update of /cvsroot/pywin32/pywin32/com/win32com/test In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv28153/com/win32com/test Modified Files: testPyComTest.py Log Message: pythoncom gets better support for 64bit integers, including in arrays. Index: testPyComTest.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/testPyComTest.py,v retrieving revision 1.45 retrieving revision 1.46 diff -C2 -d -r1.45 -r1.46 *** testPyComTest.py 3 Feb 2009 23:00:36 -0000 1.45 --- testPyComTest.py 12 Jun 2009 07:48:33 -0000 1.46 *************** *** 278,281 **** --- 278,284 ---- TestApplyResult(o.SetVariantSafeArray, (l,), len(l)) TestApplyResult(o.SetIntSafeArray, (l,), len(l)) + ll=[1,2,3,0x100000000] + TestApplyResult(o.SetLongLongSafeArray, (ll,), len(ll)) + TestApplyResult(o.SetULongLongSafeArray, (ll,), len(ll)) # check we can pass ints as a VT_UI1 TestApplyResult(o.SetBinSafeArray, (l,), len(l)) |