Skip to content

Commit 83e679a

Browse files
committed
trac 34927:
Fix interfaces/fricas.py doctest failure. Followup to #34547.
1 parent 047281e commit 83e679a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/sage/interfaces/fricas.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -891,10 +891,10 @@ def __reduce__(self):
891891
"""
892892
EXAMPLES::
893893
894-
sage: fricas.__reduce__() # optional - fricas
894+
sage: FriCAS().__reduce__()
895895
(<function reduce_load_fricas at 0x...>, ())
896-
sage: f, args = _ # optional - fricas
897-
sage: f(*args) # optional - fricas
896+
sage: f, args = _
897+
sage: f(*args)
898898
FriCAS
899899
"""
900900
return reduce_load_fricas, tuple([])
@@ -2132,8 +2132,8 @@ def reduce_load_fricas():
21322132
21332133
EXAMPLES::
21342134
2135-
sage: from sage.interfaces.fricas import reduce_load_fricas # optional - fricas
2136-
sage: reduce_load_fricas() # optional - fricas
2135+
sage: from sage.interfaces.fricas import reduce_load_fricas
2136+
sage: reduce_load_fricas()
21372137
FriCAS
21382138
"""
21392139
return fricas

0 commit comments

Comments
 (0)