From 8db21a2b814a423c49ef6cfdea6808590ee0c92d Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 6 Oct 2024 07:37:03 -0400 Subject: [PATCH] src/sage/symbolic/integration/external.py: update a doctest With the recent change to the handling of infinity in the libgiac integrator, a warning about singular points has vanished. --- src/sage/symbolic/integration/external.py | 1 - 1 file changed, 1 deletion(-) diff --git a/src/sage/symbolic/integration/external.py b/src/sage/symbolic/integration/external.py index 84de69c5b30..fc8bd6f8cd2 100644 --- a/src/sage/symbolic/integration/external.py +++ b/src/sage/symbolic/integration/external.py @@ -227,7 +227,6 @@ def libgiac_integrator(expression, v, a=None, b=None): sage: libgiac_integrator(sin(x), x) -cos(x) sage: libgiac_integrator(1/(x^2+6), x, -oo, oo) - No checks were made for singular points of antiderivative... 1/6*sqrt(6)*pi TESTS::