Skip to content

Commit e421c4e

Browse files
author
Release Manager
committed
Trac #34927: fricas interface: __reduce__ doctest failure
This is a followup to #34547, making changes similar to ones already made there. URL: https://trac.sagemath.org/34927 Reported by: jhpalmieri Ticket author(s): John Palmieri Reviewer(s): Matthias Koeppe
2 parents f9f0324 + 83e679a commit e421c4e

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

build/pkgs/configure/checksums.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
tarball=configure-VERSION.tar.gz
2-
sha1=e95336247a7b690d91bc95af9031cd94f4808760
3-
md5=35b7a83c04310cba28e5c078443ec35e
4-
cksum=2310783026
2+
sha1=2b6bd1b9a065a92dd3b690353fe447a51282086c
3+
md5=5a2b0fbf6e801633ebeffa06a7c18814
4+
cksum=181357686
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1964374b1152cf0e5ac3c811f06db7de95572da2
1+
deed96d39acdd68f3f3b24f3139df0a6aa31a2b2

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)