From fd4a7de172c7eb8d79a4cd648f65eaa552cd175f Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 5 Sep 2007 03:26:38 +0000 Subject: Fix doctest failure introduced by r57949. The formatting of errors from pdb's own print command is different from the formatting of errors when pdb exec's an arbitrary command; the introduction of print as a pdb command caused this test to use the former instead of the latter, causing the test to fail. --- Lib/test/test_doctest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/test/test_doctest.py b/Lib/test/test_doctest.py index ab0e1d0..250614e 100644 --- a/Lib/test/test_doctest.py +++ b/Lib/test/test_doctest.py @@ -1792,7 +1792,7 @@ def test_pdb_set_trace_nested(): > (1)() -> calls_set_trace() (Pdb) print(foo) - *** NameError: name 'foo' is not defined + *** NameError: NameError("name 'foo' is not defined",) (Pdb) continue (0, 2) """ -- cgit v0.12