We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ebf179d commit ac6e0e3Copy full SHA for ac6e0e3
Lib/test/test_pdb.py
@@ -1810,12 +1810,12 @@ def test_pdb_issue_gh_104301():
1810
... ]):
1811
... n = -1
1812
... import pdb; pdb.Pdb(nosigint=True, readrc=False).set_trace()
1813
- ... print(n)
+ ... print(f"The value of n is {n}")
1814
> <doctest test.test_pdb.test_pdb_issue_gh_104301[0]>(8)<module>()
1815
- -> print(n)
+ -> print(f"The value of n is {n}")
1816
(Pdb) ! n = 42
1817
(Pdb) n
1818
- 42
+ The value of n is 42
1819
> <doctest test.test_pdb.test_pdb_issue_gh_104301[0]>(1)<module>()
1820
-> with PdbTestInput([
1821
(Pdb) continue
0 commit comments