[pywin32-checkins] pywin32/com/win32comext/axscript/test leakTest.py, 1.3, 1.4
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2010-10-27 01:10:02
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/axscript/test In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv11276/com/win32comext/axscript/test Modified Files: leakTest.py Log Message: Fix a few axscript issues with py3k. Index: leakTest.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axscript/test/leakTest.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** leakTest.py 4 Dec 2008 03:38:20 -0000 1.3 --- leakTest.py 27 Oct 2010 01:09:55 -0000 1.4 *************** *** 78,83 **** end sub """ ! PyScript = """\ ! print "PyScript is being parsed..." prop = "Property Value" def hello(arg1): --- 78,86 ---- end sub """ ! if sys.version_info < (3,): ! PyScript = """print "PyScript is being parsed..."\n""" ! else: ! PyScript = """print("PyScript is being parsed...")\n""" ! PyScript += """\ prop = "Property Value" def hello(arg1): |