projects
/
cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5626e87
)
Py3 test fix
author
Stefan Behnel
<scoder@users.berlios.de>
Fri, 27 Nov 2009 20:28:17 +0000
(21:28 +0100)
committer
Stefan Behnel
<scoder@users.berlios.de>
Fri, 27 Nov 2009 20:28:17 +0000
(21:28 +0100)
tests/run/extern_builtins_T258.pyx
patch
|
blob
|
history
diff --git
a/tests/run/extern_builtins_T258.pyx
b/tests/run/extern_builtins_T258.pyx
index bd9c0c5db4805e10194361729a15f38a9ea4ecce..54fff17f3d44cb240b91b1f31ced89b8afe8d94f 100644
(file)
--- 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]))