Skip to content

Commit 1769c9d

Browse files
Backport PR #575 on branch 3.x (PR: Fix debugger stop in breakpoints set on modules if stop on first line option is disabled) (#578)
1 parent da80630 commit 1769c9d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

spyder_kernels/customize/spyderpdb.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,7 @@ def stop_here(self, frame):
287287
if self.stopframe == self.botframe and self.stoplineno == -1:
288288
return False
289289
if self.continue_if_has_breakpoints and self.should_continue(frame):
290+
self._wait_for_mainpyfile = False
290291
self.set_continue()
291292
return False
292293
if (

0 commit comments

Comments
 (0)