Py3 test fix
authorStefan Behnel <scoder@users.berlios.de>
Fri, 27 Nov 2009 20:28:17 +0000 (21:28 +0100)
committerStefan Behnel <scoder@users.berlios.de>
Fri, 27 Nov 2009 20:28:17 +0000 (21:28 +0100)
tests/run/extern_builtins_T258.pyx

index bd9c0c5db4805e10194361729a15f38a9ea4ecce..54fff17f3d44cb240b91b1f31ced89b8afe8d94f 100644 (file)
@@ -17,7 +17,7 @@ cdef dict d = {'A': 'a'}
     
 def test_list(list L):
     """
-    >>> test_list(range(10))
+    >>> test_list(list(range(10)))
     True
     >>> class list_subclass(list): pass
     >>> test_list(list_subclass([1,2,3]))