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

Commit

Permalink
Do not use QQ.completion(oo,oo) - not implemented
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Koeppe committed Jun 9, 2021
1 parent 5e623bb commit 7d19916
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sage/symbolic/ring.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -410,7 +410,7 @@ cdef class SymbolicRing(CommutativeRing):
from sage.rings.all import NN, ZZ, QQ, AA
from sage.sets.real_set import RealSet
oo = infinity
if (x.is_finite() or x in (NN, ZZ, QQ, AA, QQ.completion(oo,oo))
if (x.is_finite() or x in (NN, ZZ, QQ, AA)
or isinstance(x, RealSet)):
exp = x
else:
Expand Down

0 comments on commit 7d19916

Please sign in to comment.