Skip to content

Commit 469f866

Browse files
committed
src/sage/lfunctions/pari.py: remove old deprecation warning
1 parent 1dda15c commit 469f866

File tree

1 file changed

+0
-11
lines changed

1 file changed

+0
-11
lines changed

src/sage/lfunctions/pari.py

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -157,18 +157,7 @@ def init_coeffs(self, v, cutoff=None, w=1, *args, **kwds):
157157
158158
sage: L2 = lfun_generic(conductor=1, gammaV=[0, 1], weight=12, eps=1)
159159
sage: L2.init_coeffs(list(delta_qexp(1000))[1:], w=[1..1000])
160-
161-
Additional arguments are ignored for compatibility with the old
162-
Dokchitser script::
163-
164-
sage: L2.init_coeffs(list(delta_qexp(1000))[1:], foo="bar")
165-
doctest:...: DeprecationWarning: additional arguments for initializing an lfun_generic are ignored
166-
See https://trac.sagemath.org/26098 for details.
167160
"""
168-
if args or kwds:
169-
from sage.misc.superseded import deprecation
170-
deprecation(26098, "additional arguments for initializing an lfun_generic are ignored")
171-
172161
v = pari(v)
173162
if v.type() not in ('t_CLOSURE', 't_VEC'):
174163
raise TypeError("v (coefficients) must be a list or a function")

0 commit comments

Comments
 (0)