diff options
author | Guido van Rossum <guido@python.org> | 2006-08-26 20:37:44 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2006-08-26 20:37:44 (GMT) |
commit | 6a2a2a08329567ea41f4f073cb43e487f83872c7 (patch) | |
tree | 63fffe60ff821be1660fe50ae7b5a06fac5936e8 /Lib/test/test_unpack.py | |
parent | 59baa759e4cc4ab66f240f35e3cb7edfb4375952 (diff) | |
download | cpython-6a2a2a08329567ea41f4f073cb43e487f83872c7.zip cpython-6a2a2a08329567ea41f4f073cb43e487f83872c7.tar.gz cpython-6a2a2a08329567ea41f4f073cb43e487f83872c7.tar.bz2 |
Inspired by SF patch #860326, make the exception formatting by
traceback.py be closer to the built-in formatting.
A few unittests had to be fixed, too.
Diffstat (limited to 'Lib/test/test_unpack.py')
-rw-r--r-- | Lib/test/test_unpack.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_unpack.py b/Lib/test/test_unpack.py index 3f72648..cd48689 100644 --- a/Lib/test/test_unpack.py +++ b/Lib/test/test_unpack.py @@ -107,7 +107,7 @@ error) >>> a, b, c, d, e = BadSeq() Traceback (most recent call last): ... - BozoError + test.test_unpack.BozoError Trigger code while expecting an IndexError (unpack sequence too short, wrong error) @@ -115,7 +115,7 @@ error) >>> a, b, c = BadSeq() Traceback (most recent call last): ... - BozoError + test.test_unpack.BozoError """ |