From 39e7b89c3bbcf824d5581b0a8d38d3b645e4fa95 Mon Sep 17 00:00:00 2001 From: Stefan Behnel Date: Fri, 27 Nov 2009 21:28:17 +0100 Subject: [PATCH] Py3 test fix --- tests/run/extern_builtins_T258.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/run/extern_builtins_T258.pyx b/tests/run/extern_builtins_T258.pyx index bd9c0c5d..54fff17f 100644 --- a/tests/run/extern_builtins_T258.pyx +++ b/tests/run/extern_builtins_T258.pyx @@ -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])) -- 2.26.2