]> gitweb.michael.orlitzky.com - sage.d.git/blobdiff - mjo/matrix_algebra.py
matrix_algebra: use "[]" for trivial matrices and fix a test.
[sage.d.git] / mjo / matrix_algebra.py
index 29a37d1e7c9bdee3dee6b36960126d5f545753fe..69d9aebcabfd566bf95b797ec20444629c62c14f 100644 (file)
@@ -60,15 +60,16 @@ class MatrixAlgebraElement(IndexedFreeModuleElement):
         TESTS::
 
             sage: MatrixAlgebra(0,ZZ,ZZ).zero()
-            0
+            []
 
         """
         if self.nrows() == 0 or self.ncols() == 0:
-            # Otherwise we get a crash or a blank space, depending
-            # on how hard we work for it.
-            return self.parent().entry_algebra().zero().__repr__()
+            # Otherwise we get a crash or a blank space, depending on
+            # how hard we work for it. This is what MatrixSpace(...,
+            # 0) returns.
+            return "[]"
 
-        return table(rs, frame=True)._repr_()
+        return table(self.rows(), frame=True)._repr_()
 
 
     def list(self):