10000 gh-117618: Make package.module searchable for breakpoints and clean up docs by gaogaotiantian · Pull Request #117619 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-117618: Make package.module searchable for breakpoints and clean up docs #117619

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

Merged
merged 9 commits into from
Apr 30, 2024
Prev Previous commit
Next Next commit
Also fix windows
  • Loading branch information
gaogaotiantian committed Apr 8, 2024
commit 99f59ebc0a59c0255c2cac1fce63e53d9bc72476
8 changes: 4 additions & 4 deletions Lib/test/test_pdb.py
Original file line number Diff line number Diff line change
Expand Up @@ -382,14 +382,14 @@ def test_pdb_breakpoint_with_filename():
> <doctest test.test_pdb.test_pdb_breakpoint_with_filename[0]>(5)test_function()
-> mod2.func88()
(Pdb) break test.test_inspect.inspect_fodder2:90
Breakpoint 1 at ...test/test_inspect/inspect_fodder2.py:90
Breakpoint 1 at ...inspect_fodder2.py:90
(Pdb) continue
> ...test/test_inspect/inspect_fodder2.py(90)func88()
> ...inspect_fodder2.py(90)func88()
-> return 90
(Pdb) break test/test_inspect/inspect_fodder2.py:115
Breakpoint 2 at ...test/test_inspect/inspect_fodder2.py:115
Breakpoint 2 at ...inspect_fodder2.py:115
(Pdb) continue
> ...test/test_inspect/inspect_fodder2.py(115)func114()
> ...inspect_fodder2.py(115)func114()
-> return 115
(Pdb) continue
"""
Expand Down
0