Commit d34facc0 authored by Martin Szulecki's avatar Martin Szulecki

cython: Replace old Pyrex for-from loop with normal one to fix compiler warning

parent e05f1262
......@@ -716,7 +716,7 @@ cdef class Array(Node):
cdef uint32_t size = plist_array_get_size(self._c_node)
cdef plist_t subnode = NULL
for i from 0 <= i < size:
for i in range(size):
subnode = plist_array_get_item(self._c_node, i)
self._array.append(plist_t_to_node(subnode, False))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment