mirror of
https://src.fedoraproject.org/rpms/sagemath.git
synced 2025-04-21 11:19:02 -04:00
Also: - Drop LANGUAGES variable setting, now ignored by the sagemath build system. - Drop unused SAGE_CBLAS variable from /usr/bin/sage. - Do not force the C locale when launching sagemath. - Allow the user to override SAGE_DEBUG in /usr/bin/sage. - Add -ecm, -giac, and -latte patches to fix interactions with external tools. - Add -sigfpe patch from upstream. - Fix flask_autoindex and flask_openid imports in sagenb. - Add Education category to the desktop file (bz 1624545). - Fix SINGULAR_SO variable in /usr/bin/sage (bz 1636759 and 1655248). - Invoke twistd-2 instead of twistd (bz 1640890). - Improve jupyter integration (bz 1663165). - Move existing jupyter integration into the notebook subpackage. - Require python-jupyter-filesystem instead of owning its directories. - Drop one more remnant of the F24 to F25 upgrade fixup.
15 lines
522 B
Diff
15 lines
522 B
Diff
diff -up src/sage/interfaces/giac.py.orig src/sage/interfaces/giac.py
|
|
--- src/sage/interfaces/giac.py.orig 2018-08-03 05:10:08.000000000 -0600
|
|
+++ src/sage/interfaces/giac.py 2019-01-18 11:04:10.255917393 -0700
|
|
@@ -616,10 +616,7 @@ If you got giac from the spkg then ``$PR
|
|
'4\n3'
|
|
sage: s='g(x):={\nx+1;\nx+2;\n}'
|
|
sage: giac(s)
|
|
- (x)->{
|
|
- x+1;
|
|
- x+2;
|
|
- }
|
|
+ (x)->[x+1,x+2]
|
|
sage: giac.g(5)
|
|
7
|
|
"""
|