Skip to content

Commit f0a3d1a

Browse files
author
Matthias Koeppe
committed
src/sage/rings/complex_arb.pyx: Remove method aliases deprecated in #32869 (2021)
1 parent 8dd7c3c commit f0a3d1a

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

src/sage/rings/complex_arb.pyx

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,10 @@ from sage.structure.unique_representation import UniqueRepresentation
191191
from sage.arith.long cimport is_small_python_int
192192

193193
from sage.misc.lazy_string import lazy_string
194-
from sage.misc.superseded import deprecated_function_alias
195194
from sage.rings.complex_interval_field import ComplexIntervalField, ComplexIntervalField_class
196195
from sage.rings.integer_ring import ZZ
197196

197+
198198
cdef void ComplexIntervalFieldElement_to_acb(
199199
acb_t target,
200200
ComplexIntervalFieldElement source):
@@ -4229,8 +4229,6 @@ cdef class ComplexBall(RingElement):
42294229
if _do_sig(prec(self)): sig_off()
42304230
return result
42314231

4232-
ei = deprecated_function_alias(32869, Ei)
4233-
42344232
def Si(self):
42354233
"""
42364234
Return the sine integral with argument ``self``.
@@ -4255,8 +4253,6 @@ cdef class ComplexBall(RingElement):
42554253

42564254
sin_integral = Si # as for the symbolic function
42574255

4258-
si = deprecated_function_alias(32869, Si)
4259-
42604256
def Ci(self):
42614257
"""
42624258
Return the cosine integral with argument ``self``.
@@ -4281,8 +4277,6 @@ cdef class ComplexBall(RingElement):
42814277

42824278
cos_integral = Ci # as for the symbolic function
42834279

4284-
ci = deprecated_function_alias(32869, Ci)
4285-
42864280
def Shi(self):
42874281
"""
42884282
Return the hyperbolic sine integral with argument ``self``.
@@ -4307,8 +4301,6 @@ cdef class ComplexBall(RingElement):
43074301

43084302
sinh_integral = Shi
43094303

4310-
shi = deprecated_function_alias(32869, Shi)
4311-
43124304
def Chi(self):
43134305
"""
43144306
Return the hyperbolic cosine integral with argument ``self``.
@@ -4333,8 +4325,6 @@ cdef class ComplexBall(RingElement):
43334325

43344326
cosh_integral = Chi
43354327

4336-
chi = deprecated_function_alias(32869, Chi)
4337-
43384328
def li(self, bint offset=False):
43394329
"""
43404330
Return the logarithmic integral with argument ``self``.

0 commit comments

Comments
 (0)