Update of /cvsroot/pywin32/pywin32/Pythonwin/pywin/debugger
In directory sc8-pr-cvs1:/tmp/cvs-serv30812/Pythonwin/pywin/debugger
Modified Files:
debugger.py
Log Message:
Fix attribute error when trying to start debugger.
Index: debugger.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/Pythonwin/pywin/debugger/debugger.py,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** debugger.py 18 Dec 2002 05:21:30 -0000 1.10
--- debugger.py 6 Oct 2003 13:16:39 -0000 1.11
***************
*** 425,428 ****
--- 425,429 ----
self.last_cmd_debugged = ""
self.abortClosed = 0
+ self.isInitialBreakpoint = 0
debugger_parent.__init__(self)
***************
*** 933,935 ****
def _doexec(cmd, globals, locals):
! exec cmd in globals, locals
\ No newline at end of file
--- 934,936 ----
def _doexec(cmd, globals, locals):
! exec cmd in globals, locals
|