summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Behnel <stefan_ml@behnel.de>2019-01-13 10:29:24 +0100
committerStefan Behnel <stefan_ml@behnel.de>2019-01-13 10:29:24 +0100
commitc597e501d4401f8b21756cff5c085ce33be1eb3a (patch)
tree899458cb45a722cbd28825d075140ba49fae0377
parent5aad2572b1978e2319ea86e6ea3f569eda50b322 (diff)
downloadcython-gh2565_language_level_3str.tar.gz
Fix accidentally modified comment.gh2565_language_level_3str
-rw-r--r--Cython/Utility/MemoryView.pyx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Cython/Utility/MemoryView.pyx b/Cython/Utility/MemoryView.pyx
index e06476e27..9cb897761 100644
--- a/Cython/Utility/MemoryView.pyx
+++ b/Cython/Utility/MemoryView.pyx
@@ -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