We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 561d3c1 commit cc60f41Copy full SHA for cc60f41
Lib/bdb.py
@@ -201,7 +201,9 @@ def is_skipped_module(self, module_name):
201
202
def stop_here(self, frame):
203
"Return True if frame is below the starting frame in the stack."
204
- if self.stopframe is None:
+ if (self.stopframe is None
205
+ and self.returnframe is None
206
+ and self.stoplineno == 0): # TEST: via set_step
207
return True
208
if self.skip and \
209
self.is_skipped_module(frame.f_globals.get('__name__')):
0 commit comments