Commit 2816008b authored by Robert Bradshaw's avatar Robert Bradshaw

Fix long -> int conversion warnings.

parent 4de0b375
...@@ -71,7 +71,7 @@ def go_c_all_exprs(x): ...@@ -71,7 +71,7 @@ def go_c_all_exprs(x):
Spam! Spam!
Spam! Spam!
""" """
cdef int i cdef long i
for i in range(4*x,2*x,-3): for i in range(4*x,2*x,-3):
print u"Spam!" print u"Spam!"
...@@ -94,7 +94,7 @@ def go_c_calc(x): ...@@ -94,7 +94,7 @@ def go_c_calc(x):
Spam! Spam!
Spam! Spam!
""" """
cdef int i cdef long i
for i in range(2*f(x),f(x), -2): for i in range(2*f(x),f(x), -2):
print u"Spam!" print u"Spam!"
...@@ -103,7 +103,7 @@ def go_c_calc_ret(x): ...@@ -103,7 +103,7 @@ def go_c_calc_ret(x):
>>> go_c_calc_ret(2) >>> go_c_calc_ret(2)
6 6
""" """
cdef int i cdef long i
for i in range(2*f(x),f(x), -2): for i in range(2*f(x),f(x), -2):
if i < 2*f(x): if i < 2*f(x):
return i return i
......
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