@@ -211,9 +211,9 @@ cdef class MatrixMatrixAction(MatrixMulAction):
211211 """
212212 if self .G.ncols() != self .underlying_set().nrows():
213213 raise TypeError (" incompatible dimensions %s , %s " %
214- (self .G.ncols(), self .underlying_set().nrows()))
214+ (self .G.ncols(), self .underlying_set().nrows()))
215215 return MatrixSpace(base, self .G.nrows(), self .underlying_set().ncols(),
216- sparse = self .G.is_sparse() and self .underlying_set().is_sparse())
216+ sparse = self .G.is_sparse() and self .underlying_set().is_sparse())
217217
218218 cpdef _act_(self , g, s):
219219 """
@@ -321,7 +321,7 @@ cdef class MatrixVectorAction(MatrixMulAction):
321321 """
322322 if self .G.ncols() != self .underlying_set().degree():
323323 raise TypeError (" incompatible dimensions %s , %s " % (self .G.ncols(),
324- self .underlying_set().degree()))
324+ self .underlying_set().degree()))
325325 return FreeModule(base, self .G.nrows(), sparse = self .G.is_sparse())
326326
327327 cpdef _act_(self , g, s):
@@ -373,7 +373,7 @@ cdef class VectorMatrixAction(MatrixMulAction):
373373 """
374374 if self .G.nrows() != self .underlying_set().degree():
375375 raise TypeError (" incompatible dimensions %s , %s " % (self .G.nrows(),
376- self .underlying_set().degree()))
376+ self .underlying_set().degree()))
377377 return FreeModule(base, self .G.ncols(), sparse = self .G.is_sparse())
378378
379379 cpdef _act_(self , g, s):
@@ -388,7 +388,7 @@ cdef class VectorMatrixAction(MatrixMulAction):
388388 v = v.sparse_vector()
389389 else :
390390 v = v.dense_vector()
391- return (< Matrix> A)._vector_times_matrix_(v) # v * A
391+ return (< Matrix> A)._vector_times_matrix_(v) # v * A
392392
393393cdef class MatrixPolymapAction(MatrixMulAction):
394394 """
@@ -484,7 +484,7 @@ cdef class PolymapMatrixAction(MatrixMulAction):
484484 """
485485 if not isinstance (S, SchemeHomset_generic):
486486 raise TypeError (" not a scheme polynomial morphism: %s " % S)
487- MatrixMulAction.__init__ (self , G, S, False )
487+ MatrixMulAction.__init__ (self , G, S, False )
488488
489489 def _create_codomain (self , base ):
490490 """
@@ -571,8 +571,8 @@ cdef class MatrixSchemePointAction(MatrixMulAction):
571571 sage: A.codomain()
572572 Set of rational points of Projective Space of dimension 1 over Rational Field
573573 """
574- # need to extend the base of the ambient space
575- # and return the set of point over the base
574+ # need to extend the base of the ambient space
575+ # and return the set of point over the base
576576 amb = self .underlying_set().codomain()
577577 return amb.change_ring(base)(base)
578578
0 commit comments