diff options
author | Irit Katriel <iritkatriel@yahoo.com> | 2021-04-04 15:04:53 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-04 15:04:53 (GMT) |
commit | aadd4e10fda87b64ea527667238503da326a06e7 (patch) | |
tree | 7a551cf19f857246c6ce69bc8b89f7f3cafe7120 /Lib/test/test_pdb.py | |
parent | c368ce74d2c9bcbf1ec320466819c2d4768252f7 (diff) | |
download | cpython-aadd4e10fda87b64ea527667238503da326a06e7.zip cpython-aadd4e10fda87b64ea527667238503da326a06e7.tar.gz cpython-aadd4e10fda87b64ea527667238503da326a06e7.tar.bz2 |
bpo-24160: Fix test_pdb refleaks failure (GH-25182)
Diffstat (limited to 'Lib/test/test_pdb.py')
-rw-r--r-- | Lib/test/test_pdb.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index 98e2b93..fb39417 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -335,7 +335,7 @@ def test_pdb_breakpoints_preserved_across_interactive_sessions(): ... 'continue', ... ]): ... pdb.run('print()') - > <string>(1)<module>() + > <string>(1)<module>()... (Pdb) import test.test_pdb (Pdb) break test.test_pdb.do_something Breakpoint 1 at ...test_pdb.py:... @@ -355,7 +355,7 @@ def test_pdb_breakpoints_preserved_across_interactive_sessions(): ... 'continue', ... ]): ... pdb.run('print()') - > <string>(1)<module>() + > <string>(1)<module>()... (Pdb) break Num Type Disp Enb Where 1 breakpoint keep yes at ...test_pdb.py:... @@ -378,7 +378,7 @@ def test_pdb_breakpoints_preserved_across_interactive_sessions(): ... 'continue', ... ]): ... pdb.run('print()') - > <string>(1)<module>() + > <string>(1)<module>()... (Pdb) break Num Type Disp Enb Where 2 breakpoint keep yes at ...test_pdb.py:... |