summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/buffer/matrix_with_buffer.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'docs/examples/userguide/buffer/matrix_with_buffer.pyx')
-rw-r--r--docs/examples/userguide/buffer/matrix_with_buffer.pyx7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/examples/userguide/buffer/matrix_with_buffer.pyx b/docs/examples/userguide/buffer/matrix_with_buffer.pyx
index c355f0fe8..16239d199 100644
--- a/docs/examples/userguide/buffer/matrix_with_buffer.pyx
+++ b/docs/examples/userguide/buffer/matrix_with_buffer.pyx
@@ -1,8 +1,8 @@
# distutils: language = c++
-
from cpython cimport Py_buffer
from libcpp.vector cimport vector
+
cdef class Matrix:
cdef Py_ssize_t ncols
cdef Py_ssize_t shape[2]
@@ -19,7 +19,7 @@ cdef class Matrix:
def __getbuffer__(self, Py_buffer *buffer, int flags):
cdef Py_ssize_t itemsize = sizeof(self.v[0])
- self.shape[0] = self.v.size() / self.ncols
+ self.shape[0] = self.v.size() // self.ncols
self.shape[1] = self.ncols
# Stride 1 is the distance, in bytes, between two items in a row;
@@ -27,6 +27,9 @@ cdef class Matrix:
# Stride 0 is the distance between the first elements of adjacent rows.
self.strides[1] = <Py_ssize_t>( <char *>&(self.v[1])
- <char *>&(self.v[0]))
+
+
+
self.strides[0] = self.ncols * self.strides[1]
buffer.buf = <char *>&(self.v[0])