diff --git a/build/pkgs/configure/checksums.ini b/build/pkgs/configure/checksums.ini index d1cae70f15b..3cd414a478c 100644 --- a/build/pkgs/configure/checksums.ini +++ b/build/pkgs/configure/checksums.ini @@ -1,4 +1,4 @@ tarball=configure-VERSION.tar.gz -sha1=80ee52a3b6855149693204f0816bd0690947e7ae -md5=4292c175bba9299bd057980cec7060fd -cksum=3914108326 +sha1=8b9b98e674c6778e06b8aa394792d1b1001242c2 +md5=8d3df0abf1ffc33d148fae406b4c14a7 +cksum=1056911720 diff --git a/build/pkgs/configure/package-version.txt b/build/pkgs/configure/package-version.txt index 3af414421cc..044737d199c 100644 --- a/build/pkgs/configure/package-version.txt +++ b/build/pkgs/configure/package-version.txt @@ -1 +1 @@ -57852a89c5c274ec6dbdd9269042972c7343e3ec +5f50955b08fd8de497cf30491893375c4ef1c989 diff --git a/src/sage/tests/books/computational-mathematics-with-sagemath/graphique_doctest.py b/src/sage/tests/books/computational-mathematics-with-sagemath/graphique_doctest.py index aa153fd4cd5..492dd659ee6 100644 --- a/src/sage/tests/books/computational-mathematics-with-sagemath/graphique_doctest.py +++ b/src/sage/tests/books/computational-mathematics-with-sagemath/graphique_doctest.py @@ -215,11 +215,13 @@ sage: plot3d(h, (u,-1,1), (v,-1,1), aspect_ratio=[1,1,1]) Graphics3d Object -Sage example in ./graphique.tex, line 1833:: +Sage example in ./graphique.tex, line 1833. Sometimes the result +needs to be simplified to obtain a nice short expression:: sage: f(x, y) = x^2 * y / (x^4 + y^2) sage: t, theta = var('t, theta') - sage: limit(f(t * cos(theta), t * sin(theta)) / t, t=0) + sage: result = limit(f(t * cos(theta), t * sin(theta)) / t, t=0) + sage: result.full_simplify() cos(theta)^2/sin(theta) Sage example in ./graphique.tex, line 1847::