From: Stefan Behnel Date: Fri, 27 Nov 2009 20:28:17 +0000 (+0100) Subject: Py3 test fix X-Git-Tag: 0.12.1~113 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=39e7b89c3bbcf824d5581b0a8d38d3b645e4fa95;p=cython.git Py3 test fix --- 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]))