Py2.4 test fix
authorStefan Behnel <scoder@users.berlios.de>
Tue, 2 Nov 2010 11:43:14 +0000 (12:43 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Tue, 2 Nov 2010 11:43:14 +0000 (12:43 +0100)
tests/run/slice2.pyx

index 0b510bd9cbc421645cdc471c4f65d58b3e341526..1cc322e73839c29fff79e1ae1b0089ffbe5d0194 100644 (file)
@@ -7,9 +7,9 @@ def f(obj1, obj2, obj3, obj4):
     True
     >>> l is f(1, l, 2, 3)
     False
-    >>> f(1, 42, 2, 3)
+    >>> f(1, 42, 2, 3)  #doctest: +ELLIPSIS
     Traceback (most recent call last):
-    TypeError: 'int' object is unsliceable
+    TypeError: ...unsliceable...
     """
     obj1 = obj2[:]
     return obj1
@@ -18,9 +18,9 @@ def g(obj1, obj2, obj3, obj4):
     """
     >>> g(1, [1,2,3,4], 2, 3)
     [3, 4]
-    >>> g(1, 42, 2, 3)
+    >>> g(1, 42, 2, 3)  #doctest: +ELLIPSIS
     Traceback (most recent call last):
-    TypeError: 'int' object is unsliceable
+    TypeError: ...unsliceable...
     """
     obj1 = obj2[obj3:]
     return obj1
@@ -29,9 +29,9 @@ def h(obj1, obj2, obj3, obj4):
     """
     >>> h(1, [1,2,3,4], 2, 3)
     [1, 2, 3]
-    >>> h(1, 42, 2, 3)
+    >>> h(1, 42, 2, 3)  #doctest: +ELLIPSIS
     Traceback (most recent call last):
-    TypeError: 'int' object is unsliceable
+    TypeError: ...unsliceable...
     """
     obj1 = obj2[:obj4]
     return obj1
@@ -40,9 +40,9 @@ def j(obj1, obj2, obj3, obj4):
     """
     >>> j(1, [1,2,3,4], 2, 3)
     [3]
-    >>> j(1, 42, 2, 3)
+    >>> j(1, 42, 2, 3)  #doctest: +ELLIPSIS
     Traceback (most recent call last):
-    TypeError: 'int' object is unsliceable
+    TypeError: ...unsliceable...
     """
     obj1 = obj2[obj3:obj4]
     return obj1