[pywin32-checkins] pywin32/com/win32comext/axdebug/Test host.py, 1.1.4.1, 1.1.4.2
OLD project page for the Python extensions for Windows
Brought to you by:
mhammond
From: Mark H. <mha...@us...> - 2008-12-11 05:45:28
|
Update of /cvsroot/pywin32/pywin32/com/win32comext/axdebug/Test In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv29773/com/win32comext/axdebug/Test Modified Files: Tag: py3k host.py Log Message: merge more .py changes from the trunk (via 2to3) Index: host.py =================================================================== RCS file: /cvsroot/pywin32/pywin32/com/win32comext/axdebug/Test/host.py,v retrieving revision 1.1.4.1 retrieving revision 1.1.4.2 diff -C2 -d -r1.1.4.1 -r1.1.4.2 *** host.py 26 Nov 2008 09:03:29 -0000 1.1.4.1 --- host.py 11 Dec 2008 05:45:21 -0000 1.1.4.2 *************** *** 110,114 **** pydebugger.AttachApp(app) cookie = pdm.AddApplication(app) ! raw_input("Waiting...") ttest.test() --- 110,114 ---- pydebugger.AttachApp(app) cookie = pdm.AddApplication(app) ! input("Waiting...") ttest.test() *************** *** 126,130 **** parentNode = None all_real_nodes = {} ! raw_input("Waiting...") print("Done") --- 126,130 ---- parentNode = None all_real_nodes = {} ! input("Waiting...") print("Done") *************** *** 137,141 **** # d.Attach() d.Break() ! raw_input("Waiting...") ttest.test() d.Close() --- 137,141 ---- # d.Attach() d.Break() ! input("Waiting...") ttest.test() d.Close() |