Skip to content

Commit 659edc9

Browse files
committed
fix lint
1 parent 7beecbe commit 659edc9

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

src/sage/interfaces/fricas.py

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ def _start(self):
357357
# FriCAS compiled with GCL may output function declaration messages
358358
# asynchronously after the prompt appears. We need to consume any
359359
# such buffered output to keep the expect interface synchronized.
360-
# See https://github.com/sagemath/sage/issues/40569
360+
# See :issue:`40569`.
361361
E = self._expect
362362
for _ in range(3):
363363
try:
@@ -920,13 +920,12 @@ def _eval_line(self, line, allow_use_file=True, wait_for_prompt=True, restart_if
920920
to handle FriCAS compiled with GCL, which may output a double prompt
921921
after each command due to buffering issues.
922922
923-
See https://github.com/sagemath/sage/issues/40569
923+
See :issue:`40569`.
924924
925925
TESTS::
926926
927-
sage: fricas.eval('1+1')
928-
'\n 2\n'
929-
927+
sage: fricas(1+1) # indirect doctest
928+
2
930929
"""
931930
result = Expect._eval_line(self, line, allow_use_file=allow_use_file,
932931
wait_for_prompt=wait_for_prompt,

0 commit comments

Comments
 (0)