Skip to content
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.

Commit

Permalink
Sets.ParentMethods: Update doctest
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Jul 13, 2021
1 parent 753babb commit 451f5cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/sage/categories/sets_cat.py
Original file line number Diff line number Diff line change
Expand Up @@ -1714,11 +1714,11 @@ def _sympy_(self):
sage: RR._sympy_().is_finite_set
False
sage: F = Set([1, 2])
sage: F is Set([1, 2])
sage: F = Family([1, 2])
sage: F is Family([1, 2])
False
sage: sF = F._sympy_(); sF
SageSet({1, 2})
SageSet(Family (1, 2))
sage: sF._sage_() is F
True
"""
Expand Down

0 comments on commit 451f5cf

Please sign in to comment.