Skip to content

Commit 4a0950d

Browse files
author
Release Manager
committed
gh-40424: src/sage/interfaces/maxima_lib.py: remove old workaround One of our Maxima monkey-patches was merged upstream some time ago: https://sourceforge.net/p/maxima/patches/102/ Now that it has been a while, we may assume that the fix is present in Maxima. As a result, the workaround from #31553 can be removed. Closes: #32611 URL: #40424 Reported by: Michael Orlitzky Reviewer(s): nbruin
2 parents 55f907f + b8156f7 commit 4a0950d

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

src/sage/interfaces/maxima_lib.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -173,15 +173,9 @@
173173
# question and returning the answer. Our version throws an error in
174174
# which the text of the question is included. This is accomplished by
175175
# redirecting *standard-output* to a string.
176-
#
177-
# After an update in Issue 31553, this routine also preprocesses the
178-
# text to replace space symbols with strings. This prevents those
179-
# symbols from being turned into ugly newlines -- a problem that we
180-
# used to avoid with a custom patch.
181176
ecl_eval(r"""
182177
(defun retrieve (msg flag &aux (print? nil))
183178
(declare (special msg flag print?))
184-
(setq msg (mapcar #'(lambda (x) (if (eq x '| |) " " x)) msg))
185179
(or (eq flag 'noprint) (setq print? t))
186180
(error
187181
(concatenate 'string

0 commit comments

Comments
 (0)