[pywin32-checkins] pywin32/com/win32com/test util.py,1.19,1.20
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
|
From: Mark H. <mha...@us...> - 2009-02-05 06:58:18
|
Update of /cvsroot/pywin32/pywin32/com/win32com/test In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv12908/com/win32com/test Modified Files: util.py Log Message: delete temp file Index: util.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32com/test/util.py,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** util.py 9 Jan 2009 00:30:23 -0000 1.19 --- util.py 5 Feb 2009 06:58:11 -0000 1.20 *************** *** 95,98 **** --- 95,99 ---- rc = os.system(cmd) output = open(output_name, "r").read().strip() + os.remove(output_name) class Failed(Exception): pass try: |