diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-02-13 20:54:42 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-02-13 20:54:42 (GMT) |
commit | ea4f931cb9c8c821c4f99011461f300caeffaad0 (patch) | |
tree | 0cc41bedd6d45d3a164c55f6f94774c1ce1bf3e8 /Lib/test/output | |
parent | 467d723bd728e73d425c143b9ed6e8301a3d7721 (diff) | |
download | cpython-ea4f931cb9c8c821c4f99011461f300caeffaad0.zip cpython-ea4f931cb9c8c821c4f99011461f300caeffaad0.tar.gz cpython-ea4f931cb9c8c821c4f99011461f300caeffaad0.tar.bz2 |
Teach doctest about newer "(most recent call last)" traceback spelling.
Diffstat (limited to 'Lib/test/output')
-rw-r--r-- | Lib/test/output/test_doctest | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/output/test_doctest b/Lib/test/output/test_doctest index 2eee5a4..78f7a20 100644 --- a/Lib/test/output/test_doctest +++ b/Lib/test/output/test_doctest @@ -2,7 +2,7 @@ test_doctest Running doctest.__doc__ Trying: 1/0 Expecting: -Traceback (innermost last): +Traceback (most recent call last): File "<stdin>", line 1, in ? ZeroDivisionError: integer division or modulo by zero ok |