source: sage/matrix/matrix_generic.pxd @ 1319:a49c4e37b785

Revision 1319:a49c4e37b785, 363 bytes checked in by William Stein <wstein@…>, 7 years ago (diff)

Massive patch! (1) Python 2.5; (2) Complete reoranization of Pyrex code.

  • Most of this patch moves the pyrex code to where it belongs.
  • Some of this patch (not too much) involves changes needed for Python 2.5 compatibility.
Line 
1from sage.structure.element cimport ModuleElement
2from sage.structure.mutability_pyx cimport Mutability
3
4cdef class Matrix(ModuleElement):
5    cdef object _mutability
6    cdef public object _parent
7    cdef object __nrows
8    cdef object __ncols
9    cdef object __dict
10    cdef object __determinant
11    cdef object __sparse_columns
12    cdef object __sparse_rows
Note: See TracBrowser for help on using the repository browser.