[pywin32-checkins] pywin32/com/win32comext/axscript/test testHost.py, 1.3, 1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2006-06-18 13:09:50
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/axscript/test In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28862/axscript/test Modified Files: testHost.py Log Message: Move towards better unicode support - allow extended chars in comments. Index: testHost.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axscript/test/testHost.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** testHost.py 10 Nov 2003 02:21:03 -0000 1.3 --- testHost.py 18 Jun 2006 13:09:35 -0000 1.4 *************** *** 108,112 **** end sub """ ! PyScript = """\ prop = "Property Value" def hello(arg1): --- 108,113 ---- end sub """ ! PyScript = u"""\ ! # A unicode \xa9omment. prop = "Property Value" def hello(arg1): |