Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1537,7 +1537,10 @@ def _internal_line_event(func_code_info, frame, line):
# print('line event', info.pydev_state, line, threading.current_thread(), code)
# If we reached here, it was not filtered out.

if func_code_info.breakpoint_found:
# Skipped while the thread is already suspended, as pydevd_frame does: otherwise a
# thread suspended by another thread's stop reports its own breakpoint on waking,
# producing a second stopped event for what is a single all-threads stop.
if func_code_info.breakpoint_found and info.pydev_state != STATE_SUSPEND:
bp = None
stop = False
stop_on_plugin_breakpoint = False
Expand Down
Loading
Loading