[pywin32-checkins] pywin32/com/win32com/test testAXScript.py,1.5,1.6
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: <mha...@us...> - 2003-11-08 00:35:22
|
Update of /cvsroot/pywin32/pywin32/com/win32com/test In directory sc8-pr-cvs1:/tmp/cvs-serv25113/test Modified Files: testAXScript.py Log Message: Correct the case of test filenames, and remove unused import. Index: testAXScript.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/testAXScript.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** testAXScript.py 23 Oct 2003 23:48:28 -0000 1.5 --- testAXScript.py 8 Nov 2003 00:35:19 -0000 1.6 *************** *** 1,4 **** # Test AXScripting the best we can in an automated fashion... ! import win32api, win32pipe, os, sys def RegisterEngine(verbose = 1): --- 1,4 ---- # Test AXScripting the best we can in an automated fashion... ! import win32api, os, sys def RegisterEngine(verbose = 1): *************** *** 10,14 **** def TestHost(verbose = 1): import win32com.axscript ! file = win32api.GetFullPathName(os.path.join(win32com.axscript.__path__[0], "Test\\TestHost.py")) cmd = '%s "%s" > nul' % (win32api.GetModuleFileName(0), file) if verbose: --- 10,14 ---- def TestHost(verbose = 1): import win32com.axscript ! file = win32api.GetFullPathName(os.path.join(win32com.axscript.__path__[0], "test\\testHost.py")) cmd = '%s "%s" > nul' % (win32api.GetModuleFileName(0), file) if verbose: |