Skip to content

Commit fd022da

Browse files
committed
fix test_dis
1 parent 22c8eea commit fd022da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_pdb.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3039,7 +3039,7 @@ def test_pdb_issue_gh_108976():
30393039
"""
30403040

30413041
def test_pdb_issue_gh_127321():
3042-
"""See GH-127321
3042+
"""See GH-127321, GH-132532
30433043
breakpoint() should stop at a opcode that has a line number
30443044
>>> def test_function():
30453045
... import pdb; pdb_instance = pdb.Pdb(nosigint=True, readrc=False)
@@ -3050,7 +3050,7 @@ def test_pdb_issue_gh_127321():
30503050
... ]):
30513051
... test_function()
30523052
> <doctest test.test_pdb.test_pdb_issue_gh_127321[0]>(4)test_function()
3053-
-> a = 1
3053+
-> [1, 2] and pdb_instance.set_trace()
30543054
(Pdb) continue
30553055
"""
30563056

0 commit comments

Comments
 (0)