test fix for Py<=2.5
authorStefan Behnel <scoder@users.berlios.de>
Sat, 17 Jul 2010 14:24:36 +0000 (16:24 +0200)
committerStefan Behnel <scoder@users.berlios.de>
Sat, 17 Jul 2010 14:24:36 +0000 (16:24 +0200)
tests/run/list_pop.pyx

index 15161867516776254f93c0f1283a443a6bb4cd18..d1cf062e4aa0538a491ae7ca5d66b1ee3944afef 100644 (file)
@@ -129,10 +129,9 @@ def index_pop_typed(list L, int i):
 @cython.test_fail_if_path_exists('//PythonCapiCallNode')
 def crazy_pop(L):
     """
-    >>> crazy_pop(list(range(10)))
+    >>> crazy_pop(list(range(10)))    # doctest: +ELLIPSIS
     Traceback (most recent call last):
-    ...
-    TypeError: pop() takes at most 1 argument (3 given)
+    TypeError: pop... at most 1 argument...3...
     >>> crazy_pop(A())
     (1, 2, 3)
     """