From c3b6f2fe3e7a79c65999cf376ad3ca61ea31307d Mon Sep 17 00:00:00 2001 From: Matthias Koeppe Date: Sun, 29 Oct 2023 14:10:26 -0700 Subject: [PATCH] src/sage/matrix/matrix2.pyx: Fix doctest dataflow warning --- src/sage/matrix/matrix2.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sage/matrix/matrix2.pyx b/src/sage/matrix/matrix2.pyx index a40fbdb4eae..997c8118254 100644 --- a/src/sage/matrix/matrix2.pyx +++ b/src/sage/matrix/matrix2.pyx @@ -7159,7 +7159,7 @@ cdef class Matrix(Matrix1): The second eigenvector is contained in the left kernel of `B`:: - sage: (P[1, :] * B).norm() < 1e-14 # needs sage.rings.complex_double sage.symbolic + sage: (P[1, :] * B).norm() < 1e-14 # needs scipy sage.rings.complex_double sage.symbolic True .. SEEALSO::