Skip to content

Commit 78587c8

Browse files
Release Managervbraun
Release Manager
authored andcommitted
Trac #22210: Remove obsolete special case in PARI gen.eval()
A minor simplification from #15601; this would be good to do before the PARI interface will be split off as cypari2. URL: https://trac.sagemath.org/22210 Reported by: pbruin Ticket author(s): Peter Bruin Reviewer(s): Jeroen Demeyer
2 parents 360b42c + de81adc commit 78587c8

File tree

1 file changed

+2
-16
lines changed

1 file changed

+2
-16
lines changed

src/sage/libs/cypari2/gen.pyx

+2-16
Original file line numberDiff line numberDiff line change
@@ -3640,15 +3640,15 @@ cdef class Gen(Gen_auto):
36403640
sage: pari('1/x + O(x^2)').eval(0)
36413641
Traceback (most recent call last):
36423642
...
3643-
ZeroDivisionError: substituting 0 in Laurent series with negative valuation
3643+
PariError: impossible inverse in gsubst: 0
36443644
sage: pari('1/x + O(x^2)').eval(pari('O(x^3)'))
36453645
Traceback (most recent call last):
36463646
...
36473647
PariError: impossible inverse in gdiv: O(x^3)
36483648
sage: pari('O(x^0)').eval(0)
36493649
Traceback (most recent call last):
36503650
...
3651-
PariError: domain error in polcoeff: t_SER = O(x^0)
3651+
PariError: forbidden substitution t_SER , t_INT
36523652
36533653
Evaluating multivariate polynomials::
36543654
@@ -3765,20 +3765,6 @@ cdef class Gen(Gen_auto):
37653765
if t == t_POL or t == t_RFRAC:
37663766
return new_gen(poleval(self.g, t0.g))
37673767
else: # t == t_SER
3768-
if isexactzero(t0.g):
3769-
# Work around the fact that PARI currently doesn't
3770-
# support substituting exact 0 in a power series.
3771-
# We don't try to imitate this when using keyword
3772-
# arguments, and hope this will be fixed in a
3773-
# future PARI version.
3774-
if valp(self.g) < 0:
3775-
sig_off()
3776-
raise ZeroDivisionError('substituting 0 in Laurent series with negative valuation')
3777-
elif valp(self.g) == 0:
3778-
return new_gen(polcoeff0(self.g, 0, -1))
3779-
else:
3780-
sig_off()
3781-
return pari_instance.PARI_ZERO
37823768
return new_gen(gsubst(self.g, varn(self.g), t0.g))
37833769

37843770
# Call substvec() using **kwds

0 commit comments

Comments
 (0)