test: too few arguments to unpack
authorStefan Behnel <scoder@users.berlios.de>
Sat, 16 Feb 2008 18:18:17 +0000 (19:18 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Sat, 16 Feb 2008 18:18:17 +0000 (19:18 +0100)
tests/run/unpacklistcomp.pyx

index c6a2dde70a7eba7ebb03dfd568e4ba4f3d876f7b..ada619234fdfdd2ea1030c27c9f0e4429bd4c54a 100644 (file)
@@ -4,18 +4,27 @@ __doc__ = """
     >>> unpack_normal([1,2,3])
     Traceback (most recent call last):
     ValueError: too many values to unpack
+    >>> unpack_normal([1])
+    Traceback (most recent call last):
+    ValueError: need more than 1 values to unpack
 
     >>> unpack_comp([1,2])
     (1, 2)
     >>> unpack_comp([1,2,3])
     Traceback (most recent call last):
     ValueError: too many values to unpack
+    >>> unpack_comp([1])
+    Traceback (most recent call last):
+    ValueError: need more than 1 values to unpack
 
     >>> unpack_expr([1,2])
-    (1, 2)
+    (1, 4)
     >>> unpack_expr([1,2,3])
     Traceback (most recent call last):
     ValueError: too many values to unpack
+    >>> unpack_expr([1])
+    Traceback (most recent call last):
+    ValueError: need more than 1 values to unpack
 """
 
 def unpack_normal(l):