[pywin32-checkins] pywin32/com/win32com/test testvb.py,1.18,1.19
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: Mark H. <mha...@us...> - 2004-09-07 02:09:29
|
Update of /cvsroot/pywin32/pywin32/com/win32com/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8757 Modified Files: testvb.py Log Message: Make sure empty arrays work with VB Index: testvb.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/testvb.py,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** testvb.py 4 May 2004 06:59:53 -0000 1.18 --- testvb.py 7 Sep 2004 02:09:20 -0000 1.19 *************** *** 247,250 **** --- 247,255 ---- # (NOTE Python will convert incoming arrays to tuples, so we pass a tuple, even tho # a list works fine - just makes it easier for us to compare the result! + # Empty array + _DoTestArray(vbtest, ()) + # Empty child array + _DoTestArray(vbtest, ((), ())) + # ints _DoTestArray(vbtest, tuple(range(1,100))) # Floats |