mirror of
https://github.com/microsoft/debugpy.git
synced 2025-12-23 08:48:12 +00:00
Fix step-out.
This commit is contained in:
parent
d5a7ef7557
commit
697a7b26a5
1 changed files with 2 additions and 1 deletions
|
|
@ -379,7 +379,8 @@ class Step:
|
|||
break
|
||||
return is_complete
|
||||
elif self.step == "out":
|
||||
while python_frame is not None:
|
||||
is_complete = True
|
||||
for python_frame, _ in traceback.walk_stack(python_frame):
|
||||
if python_frame is self.origin:
|
||||
is_complete = False
|
||||
break
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue