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
Fixed a typo in comment
Co-authored-by: Artem Mukhin <artem.m.mukhin@gmail.com>
  • Loading branch information
gaogaotiantian and artemmukhin authored Apr 9, 2023
commit faabf32511df5f6f29e5d168023dea1ad51beb8d
2 changes: 1 addition & 1 deletion Lib/test/test_pdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -2433,7 +2433,7 @@ def f():
curr_instr_lines = [line.strip() for line in stdout.splitlines() if "-->" in line]
self.assertEqual(len(curr_instr_lines), 3)
for line in curr_instr_lines:
# Make sure ni is moving forward, not stopping at the same instrunction
# Make sure ni is moving forward, not stopping at the same instruction
self.assertEqual(curr_instr_lines.count(line), 1)

# this test is under the assumption that within 10 instructions the function
Expand Down
0