Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fabioz committed Nov 11, 2023
1 parent 71c36d0 commit 3a8a6d3
Showing 1 changed file with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -554,10 +554,11 @@ def _line_event(code, line):
# if result:
# frame = result

if info.pydev_state == STATE_SUSPEND:
print('suspend...')
py_db.do_wait_suspend(thread_info.thread, frame, 'line', None)
return
if info.pydev_state == STATE_SUSPEND:
# Note: it's possible that it was suspended with a pause (and we'd stop here too).
print('suspend...')
py_db.do_wait_suspend(thread_info.thread, frame, 'line', None)
return

# Ok, did not suspend due to a breakpoint, let's see if we're stepping.
stop_frame = info.pydev_step_stop
Expand Down

0 comments on commit 3a8a6d3

Please sign in to comment.