commit | 8a10ea4613e0bbcd067609d8d205b6ca71420f08 | [log] [tgz] |
---|---|---|
author | Georg Brandl <georg@python.org> | Wed Mar 21 09:00:55 2007 +0000 |
committer | Georg Brandl <georg@python.org> | Wed Mar 21 09:00:55 2007 +0000 |
tree | ce699f66f28ffb893f154c34d5908b1077e04990 | |
parent | f94e89c57801ffdc17c7246704c7e1c41bbc4791 [diff] |
Patch #1682205: a TypeError while unpacking an iterable is no longer masked by a generic one with the message "unpack non-sequence". (backport from rev. 54480)
diff --git a/Lib/test/test_unpack.py b/Lib/test/test_unpack.py index 3f72648..76a4822 100644 --- a/Lib/test/test_unpack.py +++ b/Lib/test/test_unpack.py
@@ -55,7 +55,7 @@ >>> a, b, c = 7 Traceback (most recent call last): ... - TypeError: unpack non-sequence + TypeError: 'int' object is not iterable Unpacking tuple of wrong size