From: Mark H. <mha...@us...> - 2008-07-01 00:11:49
|
Update of /cvsroot/pywin32/pywin32/com/win32com/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23796/test Modified Files: testPyComTest.py Log Message: test unicode constant with extended character Index: testPyComTest.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/testPyComTest.py,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** testPyComTest.py 24 May 2008 02:55:34 -0000 1.31 --- testPyComTest.py 1 Jul 2008 00:11:57 -0000 1.32 *************** *** 277,281 **** TestConstant("UCharTest", 255) TestConstant("CharTest", -1) ! TestConstant("StringTest", "Hello Loraine") now = pythoncom.MakeTime(time.gmtime(time.time())) --- 277,282 ---- TestConstant("UCharTest", 255) TestConstant("CharTest", -1) ! # 'Hello Loraine', but the 'r' is the "Registered" sign (\xae) ! TestConstant("StringTest", u"Hello Lo\xaeaine") now = pythoncom.MakeTime(time.gmtime(time.time())) |