projects
/
platform
/
upstream
/
python-cython.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0163f63
)
fix test after changing dict.keys() in Py3
author
Stefan Behnel
<stefan_ml@behnel.de>
Fri, 15 Feb 2013 16:07:09 +0000
(17:07 +0100)
committer
Stefan Behnel
<stefan_ml@behnel.de>
Fri, 15 Feb 2013 16:07:09 +0000
(17:07 +0100)
tests/run/enumerate_T316.pyx
patch
|
blob
|
history
diff --git
a/tests/run/enumerate_T316.pyx
b/tests/run/enumerate_T316.pyx
index
709e53e
..
2d66c72
100644
(file)
--- a/
tests/run/enumerate_T316.pyx
+++ b/
tests/run/enumerate_T316.pyx
@@
-91,7
+91,7
@@
def py_enumerate_dict(dict d):
"""
cdef int i = 55
k = 99
- keys =
d.keys(
)
+ keys =
list(d.keys()
)
for i,k in enumerate(d):
k = keys[i] == k
print i, k