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 2430 2430 """ 2431 2431 # sage.misc.misc.deprecation("Use eigenspaces_left") 2432 2432 if even_if_inexact is not None: 2433 sage.misc.misc.deprecat ed("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.") 2434 2434 return self.eigenspaces_left(var=var) 2435 2435 2436 2436 … … 2599 2599 if algebraic_multiplicity: 2600 2600 return x 2601 2601 else: 2602 return [(e[0],e[1]) for e in x]2602 return Sequence([(e[0],e[1]) for e in x], cr=True) 2603 2603 2604 2604 if not self.base_ring().is_exact(): 2605 2605 from warnings import warn