[Pydev-cvs] org.python.pydev.debug/pysrc pydevd_frame.py, 1.26, 1.27
Brought to you by:
fabioz
From: Fabio Z. <fa...@us...> - 2008-05-10 17:31:12
|
Update of /cvsroot/pydev/org.python.pydev.debug/pysrc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6683/pysrc Modified Files: pydevd_frame.py Log Message: Step-return skips breakpoints. Index: pydevd_frame.py =================================================================== RCS file: /cvsroot/pydev/org.python.pydev.debug/pysrc/pydevd_frame.py,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** pydevd_frame.py 12 Apr 2008 20:15:17 -0000 1.26 --- pydevd_frame.py 10 May 2008 17:31:14 -0000 1.27 *************** *** 97,101 **** # if thread has a suspend flag, we suspend with a busy wait ! if info.pydev_state == STATE_SUSPEND and info.pydev_step_cmd != CMD_STEP_RETURN: self.doWaitSuspend(thread, frame, event, arg) return self.trace_dispatch --- 97,101 ---- # if thread has a suspend flag, we suspend with a busy wait ! if info.pydev_state == STATE_SUSPEND: self.doWaitSuspend(thread, frame, event, arg) return self.trace_dispatch |