#8731: update/upgrade maxima to latest upstream (5.21.1)
---------------------------+------------------------------------------------
Reporter: jason | Owner: tbd
Type: enhancement | Status: needs_work
Priority: major | Milestone: sage-4.4.4
Component: packages | Keywords:
Author: | Upstream: N/A
Reviewer: | Merged:
Work_issues: |
---------------------------+------------------------------------------------
Comment(by nbruin):
> And in interfaces/maxima.py there are a lot of erros where Maxima loads
like
> {{{
> ;;; Loading #P".../local/lib/ecl/cmp.fas"
> ;;; Loading #P".../local/lib/ecl/sysfun.lsp"
> }}}
It's actually possible to turn messages like this off. If you're driving
maxima via a pexpect interface, that might be the proper thing to do. The
key is the "Common Lisp HyperSpec", the de facto official CL
documentation. Looking at {{{load}}} leads to the global variable
{{{*load-verbose*}}}:
http://www.lispworks.com/documentation/HyperSpec/Body/v_ld_prs.htm#STload-
verboseST
It's on by default in ECL, but can be turned off:
{{{
ECL (Embeddable Common-Lisp) 10.4.1
Copyright (C) 1984 Taiichi Yuasa and Masami Hagiya
Copyright (C) 1993 Giuseppe Attardi
Copyright (C) 2000 Juan J. Garcia-Ripoll
ECL is free software, and you are welcome to redistribute it
under certain conditions; see file 'Copyright' for details.
Type :h for Help.
Top level.
> (require 'maxima)
;;; Loading
#P"/mnt/usb1/scratch/nbruin/sage-4.4.3/local/lib/ecl/maxima.fas"
("MAXIMA")
}}}
{{{
ECL (Embeddable Common-Lisp) 10.4.1
Copyright (C) 1984 Taiichi Yuasa and Masami Hagiya
Copyright (C) 1993 Giuseppe Attardi
Copyright (C) 2000 Juan J. Garcia-Ripoll
ECL is free software, and you are welcome to redistribute it
under certain conditions; see file 'Copyright' for details.
Type :h for Help.
Top level.
> *load-verbose*
T
> (setf *load-verbose* NIL)
NIL
> (require 'maxima)
("MAXIMA")
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/8731#comment:36>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en.