Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/sage/matrix/matrix0.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ cdef class Matrix(sage.structure.element.Matrix):

.. SEEALSO::

:meth:`_set_to_product`
The backend-specific Cython hook ``_set_to_product``.

TESTS:

Expand Down Expand Up @@ -1147,7 +1147,7 @@ cdef class Matrix(sage.structure.element.Matrix):
cdef list row_list
cdef list col_list
cdef Py_ssize_t i
cdef int row, col
cdef int row = 0, col = 0
cdef int nrows = self._nrows
cdef int ncols = self._ncols
cdef tuple key_tuple
Expand Down Expand Up @@ -1624,7 +1624,7 @@ cdef class Matrix(sage.structure.element.Matrix):
cdef list value_list
cdef bint value_list_one_dimensional = 0
cdef Py_ssize_t i
cdef Py_ssize_t row, col
cdef Py_ssize_t row = 0, col = 0
cdef Py_ssize_t nrows = self._nrows
cdef Py_ssize_t ncols = self._ncols
cdef tuple key_tuple
Expand Down
Loading