Ticket #3794: eigenfunctions-3.patch

File eigenfunctions-3.patch, 1.2 kB (added by jason, 5 months ago)
  • a/sage/matrix/matrix2.pyx

    old new  
    24302430        """ 
    24312431        # sage.misc.misc.deprecation("Use eigenspaces_left") 
    24322432        if even_if_inexact is not None: 
    2433             sage.misc.misc.deprecated("The 'even_if_inexact' parameter is deprecated; a warning will be issued if called over an inexact ring.") 
     2433            sage.misc.misc.deprecation("The 'even_if_inexact' parameter is deprecated; a warning will be issued if called over an inexact ring.") 
    24342434        return self.eigenspaces_left(var=var) 
    24352435 
    24362436 
     
    25992599            if algebraic_multiplicity: 
    26002600                return x 
    26012601            else: 
    2602                 return [(e[0],e[1]) for e in x] 
     2602                return Sequence([(e[0],e[1]) for e in x], cr=True) 
    26032603 
    26042604        if not self.base_ring().is_exact(): 
    26052605            from warnings import warn