[pywin32-checkins] pywin32/com/win32com/test testall.py,1.15,1.16 testAXScript.py,1.4,1.5
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-10-25 11:11:30
|
Update of /cvsroot/pywin32/pywin32/com/win32com/test In directory sc8-pr-cvs1:/tmp/cvs-serv11696 Modified Files: testall.py testAXScript.py Log Message: Make testAXScript reposnsible for registering itself, rather than having testall do it (or *not* do it when you aren't running via testall!) Index: testall.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/testall.py,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -d -r1.15 -r1.16 *** testall.py 23 Oct 2003 07:10:02 -0000 1.15 --- testall.py 23 Oct 2003 23:48:28 -0000 1.16 *************** *** 106,110 **** import testAXScript - testAXScript.RegisterEngine() testAXScript.TestAll() --- 106,109 ---- Index: testAXScript.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/testAXScript.py,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** testAXScript.py 23 Oct 2003 07:09:30 -0000 1.4 --- testAXScript.py 23 Oct 2003 23:48:28 -0000 1.5 *************** *** 30,33 **** --- 30,34 ---- def TestAll(verbose = 1): + RegisterEngine() TestHost(verbose) TestCScript(verbose) |