The code sage: D = diagonal_matrix([1, 2, 3]) sage: exp(D)
produces RuntimeError: maximum recursion depth exceeded while calling a Python object Is this a bug? The code sage: D = matrix(3, [1, 0, 0, 0, 2, 0, 0, 0, 3]) sage: exp(D) produces the expected result. -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sage-devel. For more options, visit https://groups.google.com/d/optout.
