From e1e8df1082cfc25670e8605270ff9fa2fba4cc32 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 31 Jul 2010 08:14:16 +0000 Subject: Fix pdb test failures on the buildbots. --- Lib/test/test_pdb.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Lib/test/test_pdb.py b/Lib/test/test_pdb.py index 6010bf3..5695775 100644 --- a/Lib/test/test_pdb.py +++ b/Lib/test/test_pdb.py @@ -345,7 +345,7 @@ def test_list_commands(): -> test_pdb.do_nothing() (Pdb) step --Call-- - > /home/gbr/devel/python/Lib/test/test_pdb.py(260)do_nothing() + > ...test_pdb.py(...)do_nothing() -> def do_nothing(): (Pdb) longlist ... -> def do_nothing(): @@ -558,9 +558,9 @@ def test_pdb_run_with_incorrect_argument(): def test_pdb_run_with_code_object(): """Testing run and runeval with code object as a first argument. - >>> with PdbTestInput(['step','x', 'continue']): + >>> with PdbTestInput(['step','x', 'continue']): # doctest: +ELLIPSIS ... pdb_invoke('run', compile('x=1', '', 'exec')) - > (1)() + > (1)()... (Pdb) step --Return-- > (1)()->None -- cgit v0.12