10000 gh-103049: Support instruction level debugging in pdb by gaogaotiantian · Pull Request #103050 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-103049: Support instruction level debugging in pdb #103050

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Fix docstring for stepi
Co-authored-by: Artem Mukhin <artem.m.mukhin@gmail.com>
  • Loading branch information
gaogaotiantian and artemmukhin committed Apr 8, 2023
commit 11d13958dda05f45238f767c82b9be5a0361814f
2 changes: 1 addition & 1 deletion Lib/pdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,7 @@ def do_step(self, arg):

def do_stepi(self, arg):
"""s(tep)
Execute the current line, stop at the first possible occasion
Execute the current instruction, stop at the first possible occasion
(either in a function that is called or in the current
function).
"""
Expand Down
0