[pywin32-checkins] pywin32/com/win32com/test testvb.py,1.26,1.27
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: Mark H. <mha...@us...> - 2009-02-03 03:23:11
|
Update of /cvsroot/pywin32/pywin32/com/win32com/test In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv11302/com/win32com/test Modified Files: testvb.py Log Message: remove long obsolete Unicode() function from pythoncom and win32gui Index: testvb.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/testvb.py,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** testvb.py 7 Jan 2009 06:03:29 -0000 1.26 --- testvb.py 3 Feb 2009 03:23:07 -0000 1.27 *************** *** 305,309 **** # This time, instead of an explicit str() for 1.5, we just # pass Unicode, so the result should compare equal ! testData = [1, 2.0, pythoncom.Unicode("3")] resultData, byRefParam = vbtest.PassSAFEARRAYVariant(testData) assert testData == list(byRefParam) --- 305,309 ---- # This time, instead of an explicit str() for 1.5, we just # pass Unicode, so the result should compare equal ! testData = [1, 2.0, u"3"] resultData, byRefParam = vbtest.PassSAFEARRAYVariant(testData) assert testData == list(byRefParam) |