Commit c597e501 authored by Stefan Behnel's avatar Stefan Behnel

Fix accidentally modified comment.

parent 5aad2572
......@@ -866,7 +866,7 @@ cdef int slice_memviewslice(
if not have_step:
step = 1
# len = ceil( (stop - start) // step )
# len = ceil( (stop - start) / step )
with cython.cdivision(True):
new_shape = (stop - start) // step
......
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