Skip to content

Commit aa4669b

Browse files
Release Managervbraun
Release Manager
authored andcommitted
Trac #26759: remove a big bunch of deprecated stuff
after #22755, #22632, #22630, #22129, #22805, #22311, #22470 URL: https://trac.sagemath.org/26759 Reported by: chapoton Ticket author(s): Frédéric Chapoton Reviewer(s): Travis Scrimshaw
2 parents 698b9d7 + 37787e5 commit aa4669b

File tree

7 files changed

+26
-144
lines changed

7 files changed

+26
-144
lines changed

src/sage/arith/functions.pyx

+6-17
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
Fast Arithmetic Functions
33
"""
44

5-
#*****************************************************************************
5+
# ****************************************************************************
66
# Copyright (C) 2017 Travis Scrimshaw <tcscrims at gmail.com>
77
#
88
# This program is free software: you can redistribute it and/or modify
99
# it under the terms of the GNU General Public License as published by
1010
# the Free Software Foundation, either version 2 of the License, or
1111
# (at your option) any later version.
12-
# http://www.gnu.org/licenses/
13-
#*****************************************************************************
12+
# https://www.gnu.org/licenses/
13+
# ****************************************************************************
1414

1515
from cysignals.signals cimport sig_check
1616

@@ -63,8 +63,8 @@ def lcm(a, b=None):
6363
The following shows that indeed coercion takes place before
6464
computing the least common multiple::
6565
66-
sage: R.<x>=QQ[]
67-
sage: S.<x>=ZZ[]
66+
sage: R.<x> = QQ[]
67+
sage: S.<x> = ZZ[]
6868
sage: p = S.random_element(degree=(0,5))
6969
sage: q = R.random_element(degree=(0,5))
7070
sage: parent(lcm([1/p,q]))
@@ -115,7 +115,7 @@ def lcm(a, b=None):
115115

116116
try:
117117
return a.lcm(b)
118-
except (AttributeError,TypeError):
118+
except (AttributeError, TypeError):
119119
pass
120120
try:
121121
return Integer(a).lcm(Integer(b))
@@ -186,13 +186,6 @@ cpdef LCM_list(v):
186186
sage: R.<X> = QQ[]
187187
sage: LCM_list(Sequence((2*X+4,2*X^2,2)))
188188
X^3 + 2*X^2
189-
190-
Passing strings works, but this is deprecated::
191-
192-
sage: LCM_list([int(3), int(9), '30'])
193-
doctest:...: DeprecationWarning: passing strings to lcm() is deprecated
194-
See http://trac.sagemath.org/22630 for details.
195-
90
196189
"""
197190
cdef Integer x
198191
cdef Integer z = <Integer>(Integer.__new__(Integer))
@@ -205,10 +198,6 @@ cpdef LCM_list(v):
205198
x = <Integer>elt
206199
elif isinstance(elt, (int, long)):
207200
x = Integer(elt)
208-
elif isinstance(elt, str):
209-
from sage.misc.superseded import deprecation
210-
deprecation(22630, "passing strings to lcm() is deprecated")
211-
x = Integer(elt)
212201
else:
213202
# The result is no longer an Integer, pass to generic code
214203
a, b = coercion_model.canonical_coercion(z, elt)

src/sage/combinat/free_module.py

+2-31
Original file line numberDiff line numberDiff line change
@@ -1182,39 +1182,10 @@ def _from_dict(self, d, coerce=False, remove_zeros=True):
11821182
assert isinstance(d, dict)
11831183
if coerce:
11841184
R = self.base_ring()
1185-
d = {key: R(coeff) for key,coeff in six.iteritems(d)}
1185+
d = {key: R(coeff) for key, coeff in six.iteritems(d)}
11861186
if remove_zeros:
11871187
d = {key: coeff for key, coeff in six.iteritems(d) if coeff}
1188-
return self.element_class( self, d )
1189-
1190-
class CombinatorialFreeModuleElement(CombinatorialFreeModule.Element):
1191-
"""
1192-
Deprecated. Use
1193-
:class:`sage.modules.with_basis.indexed_element.IndexedFreeModuleElement`
1194-
or :class:`CombinatorialFreeModule.Element` instead.
1195-
"""
1196-
def __init__(self, *args, **kwds):
1197-
"""
1198-
TESTS::
1199-
1200-
sage: from sage.combinat.free_module import CombinatorialFreeModuleElement
1201-
sage: class Test(CombinatorialFreeModule):
1202-
....: class Element(CombinatorialFreeModuleElement):
1203-
....: pass
1204-
sage: T = Test(QQ, (1,2))
1205-
sage: T.an_element()
1206-
doctest:warning
1207-
...
1208-
DeprecationWarning: CombinatorialFreeModuleElement is deprecated.
1209-
Use IndexedFreeModuleElement or CombinatorialFreeModule.Element instead.
1210-
See http://trac.sagemath.org/22632 for details.
1211-
2*B[1] + 2*B[2]
1212-
"""
1213-
from sage.misc.superseded import deprecation
1214-
deprecation(22632, "CombinatorialFreeModuleElement is deprecated."
1215-
" Use IndexedFreeModuleElement"
1216-
" or CombinatorialFreeModule.Element instead.")
1217-
super(CombinatorialFreeModuleElement, self).__init__(*args, **kwds)
1188+
return self.element_class(self, d)
12181189

12191190

12201191
class CombinatorialFreeModule_Tensor(CombinatorialFreeModule):

src/sage/groups/group.pyx

+8-13
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Base class for groups
33
"""
44

5-
#*****************************************************************************
5+
# ****************************************************************************
66
# Copyright (C) 2005 William Stein <[email protected]>
77
#
88
# Distributed under the terms of the GNU General Public License (GPL)
@@ -14,8 +14,8 @@ Base class for groups
1414
#
1515
# The full text of the GPL is available at:
1616
#
17-
# http://www.gnu.org/licenses/
18-
#*****************************************************************************
17+
# https://www.gnu.org/licenses/
18+
# ****************************************************************************
1919
from __future__ import absolute_import
2020

2121
import random
@@ -24,6 +24,7 @@ from sage.structure.parent cimport Parent
2424
from sage.rings.infinity import infinity
2525
from sage.rings.integer_ring import ZZ
2626

27+
2728
def is_Group(x):
2829
"""
2930
Return whether ``x`` is a group object.
@@ -77,7 +78,7 @@ cdef class Group(Parent):
7778
...
7879
NotImplementedError: cannot construct elements of <sage.groups.group.Group object at ...>
7980
"""
80-
def __init__(self, base=None, gens=None, category=None):
81+
def __init__(self, base=None, category=None):
8182
"""
8283
The Python constructor
8384
@@ -105,9 +106,6 @@ cdef class Group(Parent):
105106
sage: h == hash(G)
106107
True
107108
"""
108-
if gens is not None:
109-
from sage.misc.superseded import deprecation
110-
deprecation(22129, "gens keyword has been deprecated. Define a method gens() instead.")
111109
from sage.categories.groups import Groups
112110
if category is None:
113111
category = Groups()
@@ -262,7 +260,7 @@ cdef class FiniteGroup(Group):
262260
Generic finite group.
263261
"""
264262

265-
def __init__(self, base=None, gens=None, category=None):
263+
def __init__(self, base=None, category=None):
266264
"""
267265
The Python constructor
268266
@@ -273,22 +271,19 @@ cdef class FiniteGroup(Group):
273271
sage: G.category()
274272
Category of finite groups
275273
"""
276-
if gens is not None:
277-
from sage.misc.superseded import deprecation
278-
deprecation(22129, "gens keyword has been deprecated. Define a method gens() instead.")
279274
from sage.categories.finite_groups import FiniteGroups
280275
if category is None:
281276
category = FiniteGroups()
282277
else:
283278
if not isinstance(category, tuple):
284279
category = (category,)
285280
if not any(cat.is_subcategory(FiniteGroups()) for cat in category):
286-
raise ValueError("%s is not a subcategory of %s"%(category, FiniteGroups()))
281+
raise ValueError("%s is not a subcategory of %s" % (category, FiniteGroups()))
287282
Parent.__init__(self, base=base, category=category)
288283

289284
def is_finite(self):
290285
"""
291-
Return True.
286+
Return ``True``.
292287
293288
EXAMPLES::
294289

src/sage/misc/cython.py

+3-34
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,15 @@
88
- Martin Albrecht & William Stein (2011-08): cfile & cargs
99
"""
1010

11-
#*****************************************************************************
11+
# ****************************************************************************
1212
# Copyright (C) 2006 William Stein <[email protected]>
1313
#
1414
# This program is free software: you can redistribute it and/or modify
1515
# it under the terms of the GNU General Public License as published by
1616
# the Free Software Foundation, either version 2 of the License, or
1717
# (at your option) any later version.
18-
# http://www.gnu.org/licenses/
19-
#*****************************************************************************
20-
18+
# https://www.gnu.org/licenses/
19+
# ****************************************************************************
2120
from __future__ import print_function, absolute_import
2221
from six.moves import builtins
2322
from six import iteritems
@@ -690,36 +689,6 @@ def cython(filename, verbose=0, compile_message=False,
690689
return name, target_dir
691690

692691

693-
def subtract_from_line_numbers(s, n):
694-
r"""
695-
Given a string ``s`` and an integer ``n``, for any line of ``s`` which has
696-
the form ``'text:NUM:text'`` subtract ``n`` from NUM and return
697-
``'text:(NUM-n):text'``. Return other lines of ``s`` without change.
698-
699-
EXAMPLES::
700-
701-
sage: from sage.misc.cython import subtract_from_line_numbers
702-
sage: subtract_from_line_numbers('hello:1234:hello', 3)
703-
doctest:...: DeprecationWarning: subtract_from_line_numbers is deprecated
704-
See http://trac.sagemath.org/22805 for details.
705-
'hello:1231:hello\n'
706-
sage: subtract_from_line_numbers('text:123\nhello:1234:', 3)
707-
'text:123\nhello:1231:\n'
708-
"""
709-
from sage.misc.superseded import deprecation
710-
deprecation(22805, 'subtract_from_line_numbers is deprecated')
711-
712-
ans = []
713-
for X in s.split('\n'):
714-
i = X.find(':')
715-
j = i+1 + X[i+1:].find(':')
716-
try:
717-
ans.append('%s:%s:%s\n'%(X[:i], int(X[i+1:j]) - n, X[j+1:]))
718-
except ValueError:
719-
ans.append(X)
720-
return '\n'.join(ans)
721-
722-
723692
################################################################
724693
# COMPILE
725694
################################################################

src/sage/misc/lazy_import.pyx

+7-10
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@ AUTHOR:
4242
- Robert Bradshaw
4343
"""
4444

45-
#*****************************************************************************
45+
# ****************************************************************************
4646
# Copyright (C) 2009 Robert Bradshaw <[email protected]>
4747
#
4848
# This program is free software: you can redistribute it and/or modify
4949
# it under the terms of the GNU General Public License as published by
5050
# the Free Software Foundation, either version 2 of the License, or
5151
# (at your option) any later version.
52-
# http://www.gnu.org/licenses/
53-
#*****************************************************************************
52+
# https://www.gnu.org/licenses/
53+
# ****************************************************************************
5454

5555
# Keep OLD division semantics for Python 2 compatibility, such that
5656
# lazy imports support old and true division.
@@ -101,7 +101,7 @@ cpdef finish_startup():
101101

102102
cpdef bint is_during_startup():
103103
"""
104-
Return whether Sage is currently starting up
104+
Return whether Sage is currently starting up.
105105
106106
OUTPUT:
107107
@@ -283,7 +283,7 @@ cdef class LazyImport(object):
283283

284284
def _sage_src_(self):
285285
"""
286-
Returns the source of the wrapped object for introspection.
286+
Return the source of the wrapped object for introspection.
287287
288288
EXAMPLES::
289289
@@ -296,7 +296,7 @@ cdef class LazyImport(object):
296296

297297
def _sage_argspec_(self):
298298
"""
299-
Returns the argspec of the wrapped object for introspection.
299+
Return the argspec of the wrapped object for introspection.
300300
301301
EXAMPLES::
302302
@@ -975,7 +975,7 @@ cdef class LazyImport(object):
975975

976976

977977
def lazy_import(module, names, as_=None, *,
978-
at_startup=False, namespace=None, overwrite=None, deprecation=None):
978+
at_startup=False, namespace=None, deprecation=None):
979979
"""
980980
Create a lazy import object and inject it into the caller's global
981981
namespace. For the purposes of introspection and calling, this is
@@ -1067,9 +1067,6 @@ def lazy_import(module, names, as_=None, *,
10671067
See http://trac.sagemath.org/14275 for details.
10681068
5-adic Field with capped relative precision 20
10691069
"""
1070-
if overwrite is not None:
1071-
from sage.misc.superseded import deprecation
1072-
deprecation(22755, "lazy_import(overwrite=False) is no longer supported")
10731070
if as_ is None:
10741071
as_ = names
10751072
if isinstance(names, basestring):

src/sage/structure/element.pxd

-21
Original file line numberDiff line numberDiff line change
@@ -144,27 +144,6 @@ cpdef inline bint have_same_parent(left, right):
144144
return HAVE_SAME_PARENT(classify_elements(left, right))
145145

146146

147-
cdef inline parent_c(x):
148-
"""
149-
Deprecated alias for :func:`parent`.
150-
151-
TESTS::
152-
153-
sage: cython('''
154-
....: from sage.structure.element cimport parent_c
155-
....: from sage.all import ZZ
156-
....: print(parent_c(ZZ.one()))
157-
....: ''')
158-
doctest:...:
159-
DeprecationWarning: parent_c() is deprecated, use parent() instead
160-
See http://trac.sagemath.org/22311 for details.
161-
Integer Ring
162-
"""
163-
from sage.misc.superseded import deprecation
164-
deprecation(22311, "parent_c() is deprecated, use parent() instead")
165-
return parent(x)
166-
167-
168147
cdef unary_op_exception(op, x)
169148
cdef bin_op_exception(op, x, y)
170149

src/sage/structure/sage_object.pyx

-18
Original file line numberDiff line numberDiff line change
@@ -690,24 +690,6 @@ cdef class SageObject:
690690
def _sage_(self):
691691
return self
692692

693-
def _pari_(self):
694-
"""
695-
Deprecated alias for ``__pari__``.
696-
697-
TESTS::
698-
699-
sage: class NewStylePari(SageObject):
700-
....: def __pari__(self):
701-
....: return pari(42)
702-
sage: NewStylePari()._pari_()
703-
doctest:...: DeprecationWarning: the _pari_ method is deprecated, use __pari__ instead
704-
See http://trac.sagemath.org/22470 for details.
705-
42
706-
"""
707-
from sage.misc.superseded import deprecation
708-
deprecation(22470, 'the _pari_ method is deprecated, use __pari__ instead')
709-
return self.__pari__()
710-
711693
def _interface_(self, I):
712694
"""
713695
Return coercion of self to an object of the interface I.

0 commit comments

Comments
 (0)