From 1c2e81ed00477255b09a9c3693ddc441979c6c2e Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Fri, 15 Nov 2019 21:55:22 +0100 Subject: [PATCH] fixup! test --- Lib/bdb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/bdb.py b/Lib/bdb.py index 91e62b22f08..9b021c509bf 100644 --- a/Lib/bdb.py +++ b/Lib/bdb.py @@ -200,7 +200,7 @@ class Bdb: def stop_here(self, frame): "Return True if frame is below the starting frame in the stack." if (self.stopframe is None - and self.returnframes is None + and self.returnframe is None and self.stoplineno == 0): # TEST: via set_step return True if self.skip and \