mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
bpo-24160: Fix test_pdb refleaks failure (GH-25182)
This commit is contained in:
parent
c368ce74d2
commit
aadd4e10fd
1 changed files with 3 additions and 3 deletions
|
@ -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:...
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue