Skip to content

Commit e738d85

Browse files
Release Managervbraun
Release Manager
authored andcommitted
Trac #24103: Remove a lot of deprecated code
Remove code deprecated in #2536, #13605, #14469, #16930, #16983, #16878, #17229, #17443, #17451, #17686, #18558, #19694, #19888, #20015, #20253, #20318, #20442, #21141, #21145, #21148, #21376, #21435 This includes a lot of deprecations for `cmp` instead of `key` for sorting. URL: https://trac.sagemath.org/24103 Reported by: jdemeyer Ticket author(s): Jeroen Demeyer Reviewer(s): Travis Scrimshaw
2 parents b8686f6 + aae6e54 commit e738d85

29 files changed

+14
-968
lines changed

src/sage/algebras/algebra_element.py

-32
This file was deleted.

src/sage/all.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -259,9 +259,6 @@ def quit_sage(verbose=True):
259259
from sage.libs.all import symmetrica
260260
symmetrica.end()
261261

262-
# A deprecation(20442) warning will be given when this module is
263-
# imported, in particular when these functions are used.
264-
lazy_import("sage.ext.interactive_constructors_c", ["inject_on", "inject_off"])
265262

266263
sage.structure.sage_object.register_unpickle_override('sage.categories.category', 'Sets', Sets)
267264
sage.structure.sage_object.register_unpickle_override('sage.categories.category_types', 'HeckeModules', HeckeModules)
@@ -271,6 +268,7 @@ def quit_sage(verbose=True):
271268
sage.structure.sage_object.register_unpickle_override('sage.categories.category_types', 'VectorSpaces', VectorSpaces)
272269
sage.structure.sage_object.register_unpickle_override('sage.categories.category_types', 'Schemes_over_base', sage.categories.schemes.Schemes_over_base)
273270
sage.structure.sage_object.register_unpickle_override('sage.categories.category_types', 'ModularAbelianVarieties', ModularAbelianVarieties)
271+
sage.structure.sage_object.register_unpickle_override('sage.libs.pari.gen_py', 'pari', pari)
274272

275273
# Cache the contents of star imports.
276274
sage.misc.lazy_import.save_cache_file()

src/sage/categories/examples/with_realizations.py

-27
Original file line numberDiff line numberDiff line change
@@ -232,33 +232,6 @@ def indices(self):
232232
"""
233233
return Subsets(self._S)
234234

235-
def indices_cmp(self, x, y):
236-
r"""
237-
A comparison function on sets which gives a linear extension
238-
of the inclusion order.
239-
240-
INPUT:
241-
242-
- ``x``, ``y`` -- sets
243-
244-
EXAMPLES::
245-
246-
sage: from functools import cmp_to_key
247-
sage: A = Sets().WithRealizations().example(); A
248-
The subset algebra of {1, 2, 3} over Rational Field
249-
sage: sorted(A.indices(), key=cmp_to_key(A.indices_cmp))
250-
doctest:...: DeprecationWarning: indices_cmp is deprecated, use indices_key instead.
251-
See http://trac.sagemath.org/17229 for details.
252-
[{}, {1}, {2}, {3}, {1, 2}, {1, 3}, {2, 3}, {1, 2, 3}]
253-
"""
254-
from sage.misc.superseded import deprecation
255-
deprecation(17229, "indices_cmp is deprecated, use indices_key instead.")
256-
257-
s = (len(x) > len(y)) - (len(x) < len(y))
258-
if s != 0:
259-
return s
260-
return (list(x) > list(y)) - (list(x) < list(y))
261-
262235
def indices_key(self, x):
263236
r"""
264237
A key function on a set which gives a linear extension

src/sage/combinat/free_module.py

-7
Original file line numberDiff line numberDiff line change
@@ -433,13 +433,6 @@ def __init__(self, R, basis_keys=None, element_class=None, category=None,
433433

434434
# ignore the optional 'key' since it only affects CachedRepresentation
435435
kwds.pop('key', None)
436-
# This needs to be first as per #10127
437-
if 'monomial_cmp' in kwds:
438-
from sage.misc.superseded import deprecation
439-
deprecation(17229, "Option monomial_cmp is deprecated, use sorting_key and sorting_reverse instead.")
440-
from functools import cmp_to_key
441-
kwds['sorting_key'] = cmp_to_key(kwds['monomial_cmp'])
442-
del kwds['monomial_cmp']
443436
if 'monomial_key' in kwds:
444437
kwds['sorting_key'] = kwds.pop('monomial_key')
445438
if 'monomial_reverse' in kwds:

src/sage/combinat/integer_list_old.py

-2
Original file line numberDiff line numberDiff line change
@@ -410,8 +410,6 @@ def iterator(n, min_length, max_length, floor, ceiling, min_slope, max_slope):
410410
sage: list(iterator(2, 3, 3, lambda i: 0, lambda i: 5, 0, 10))
411411
[[0, 1, 1], [0, 0, 2]]
412412
"""
413-
#from sage.misc.superseded import deprecation
414-
#deprecation(13605, 'iterator(...) is deprecated. Use IntegerListLex(...) instead.')
415413
stopgap("Iterator uses the old implementation of IntegerListsLex, which does not allow for arbitrary input;"
416414
" non-allowed input can return wrong results,"
417415
" please see the documentation for IntegerListsLex for details.",

src/sage/combinat/ordered_tree.py

-147
Original file line numberDiff line numberDiff line change
@@ -716,153 +716,6 @@ def normalize(self, inplace=False):
716716
resl[i] = resl[i].normalize()
717717
resl.sort(key=lambda t: t.sort_key())
718718

719-
def dendrog_cmp(self, other):
720-
r"""
721-
Return `-1` if ``self`` is smaller than ``other`` in the
722-
dendrographical order; return `0` if they are equal;
723-
return `1` if ``other`` is smaller.
724-
725-
.. NOTE:: This is deprecated.
726-
727-
The dendrographical order is a total order on the set of
728-
unlabelled ordered rooted trees; it is defined recursively
729-
as follows: An ordered rooted tree `T` with children
730-
`T_1, T_2, \ldots, T_a` is smaller than an
731-
ordered rooted tree `S` with children
732-
`S_1, S_2, \ldots, S_b` if either `a < b` or (`a = b`
733-
and there exists a `1 \leq i \leq a` such that
734-
`T_1 = S_1, T_2 = S_2, \ldots, T_{i-1} = S_{i-1}` and
735-
`T_i < S_i`).
736-
737-
INPUT:
738-
739-
- ``other`` -- an ordered rooted tree
740-
741-
OUTPUT:
742-
743-
- `-1`, if ``smaller < other`` with respect to the
744-
dendrographical order.
745-
- `0`, if ``smaller == other`` (as unlabelled ordered
746-
rooted trees).
747-
- `1`, if ``smaller > other`` with respect to the
748-
dendrographical order.
749-
750-
.. NOTE::
751-
752-
It is possible to provide labelled trees to this
753-
method; however, their labels are ignored.
754-
755-
EXAMPLES::
756-
757-
sage: OT = OrderedTree
758-
sage: ta = OT([])
759-
sage: tb = OT([[], [], [[], []]])
760-
sage: tc = OT([[], [[], []], []])
761-
sage: td = OT([[[], []], [], []])
762-
sage: te = OT([[], []])
763-
sage: tf = OT([[], [], []])
764-
sage: tg = OT([[[], []], [[], []]])
765-
sage: l = [ta, tb, tc, td, te, tf, tg]
766-
sage: [l[i].dendrog_cmp(l[j]) for i in range(7) for j in range(7)]
767-
doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
768-
See http://trac.sagemath.org/21148 for details.
769-
doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
770-
See http://trac.sagemath.org/21148 for details.
771-
[0, -1, -1, -1, -1, -1, -1,
772-
1, 0, -1, -1, 1, 1, 1,
773-
1, 1, 0, -1, 1, 1, 1,
774-
1, 1, 1, 0, 1, 1, 1,
775-
1, -1, -1, -1, 0, -1, -1,
776-
1, -1, -1, -1, 1, 0, 1,
777-
1, -1, -1, -1, 1, -1, 0]
778-
"""
779-
from sage.misc.superseded import deprecation
780-
deprecation(21148, "Please use 'sort_key' to sort.")
781-
782-
if len(self) < len(other):
783-
return -1
784-
if len(self) > len(other):
785-
return 1
786-
for (a, b) in zip(self, other):
787-
comp = a.dendrog_cmp(b)
788-
if comp != 0:
789-
return comp
790-
return 0
791-
792-
@cached_method
793-
def dendrog_normalize(self, inplace=False):
794-
r"""
795-
Return the normalized tree of the *unlabelled* ordered rooted
796-
tree ``self`` with respect to the dendrographical order.
797-
798-
INPUT:
799-
800-
- ``inplace`` -- (default ``False``) boolean; if ``True``,
801-
then ``self`` is modified and nothing returned; otherwise
802-
the normalized tree is returned
803-
804-
.. NOTE:: This is deprecated.
805-
806-
The normalized tree of an unlabelled ordered rooted tree
807-
`t` with respect to the dendrographical order is an
808-
unlabelled ordered rooted tree defined recursively
809-
as follows: We first replace all children of `t` by their
810-
normalized trees (with respect to the dendrographical
811-
order); then, we reorder these children in weakly
812-
increasing order with respect to the dendrographical order
813-
(:meth:`dendrog_cmp`).
814-
815-
This can be viewed as an alternative to :meth:`normalize`
816-
for the case of unlabelled ordered rooted trees.
817-
818-
EXAMPLES::
819-
820-
sage: OT = OrderedTree
821-
sage: ta = OT([[],[[]]])
822-
sage: tb = OT([[[]],[]])
823-
sage: ta.dendrog_normalize() == tb.dendrog_normalize()
824-
doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
825-
See http://trac.sagemath.org/21148 for details.
826-
doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
827-
See http://trac.sagemath.org/21148 for details.
828-
doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
829-
See http://trac.sagemath.org/21148 for details.
830-
True
831-
sage: ta == tb
832-
False
833-
sage: ta.dendrog_normalize()
834-
[[], [[]]]
835-
836-
An example with inplace normalization::
837-
838-
sage: OT = OrderedTree
839-
sage: ta = OT([[],[[]]])
840-
sage: tb = OT([[[]],[]])
841-
sage: ta.dendrog_normalize(inplace=True); ta
842-
doctest:...: DeprecationWarning: Please use 'sort_key' to sort.
843-
See http://trac.sagemath.org/21148 for details.
844-
[[], [[]]]
845-
sage: tb.dendrog_normalize(inplace=True); tb
846-
[[], [[]]]
847-
"""
848-
from sage.misc.superseded import deprecation
849-
deprecation(21148, "Please use 'sort_key' to sort.")
850-
851-
def dendrog_cmp(a, b):
852-
return a.dendrog_cmp(b)
853-
if not inplace:
854-
with self.clone() as res:
855-
resl = res._get_list()
856-
for i in range(len(resl)):
857-
resl[i] = resl[i].dendrog_normalize()
858-
resl.sort(cmp=dendrog_cmp)
859-
return res
860-
861-
resl = self._get_list()
862-
for i in range(len(resl)):
863-
resl[i] = resl[i].dendrog_normalize()
864-
resl.sort(cmp=dendrog_cmp)
865-
866719

867720
# Abstract class to serve as a Factory no instance are created.
868721
class OrderedTrees(UniqueRepresentation, Parent):

src/sage/combinat/permutation.py

+2-18
Original file line numberDiff line numberDiff line change
@@ -7682,7 +7682,7 @@ def permutohedron_lequal(p1, p2, side="right"):
76827682
############
76837683
from sage.combinat.words.finite_word import evaluation_dict
76847684

7685-
def to_standard(p, cmp=None, key=None):
7685+
def to_standard(p, key=None):
76867686
r"""
76877687
Return a standard permutation corresponding to the iterable ``p``.
76887688
@@ -7691,11 +7691,6 @@ def to_standard(p, cmp=None, key=None):
76917691
- ``p`` -- an iterable
76927692
- ``key`` -- (optional) a comparison key for the element
76937693
``x`` of ``p``
7694-
- ``cmp`` -- (optional, deprecated) a comparison function for the
7695-
two elements ``x`` and ``y`` of ``p`` (return an integer
7696-
according to the outcome)
7697-
7698-
Using ``cmp`` is no longer allowed in Python3 and should be avoided.
76997694
77007695
EXAMPLES::
77017696
@@ -7738,20 +7733,9 @@ def to_standard(p, cmp=None, key=None):
77387733
sage: p = list(Words(100, 1000).random_element())
77397734
sage: std(p) == permutation.to_standard(p)
77407735
True
7741-
7742-
Deprecation of ``cmp`` in favor of ``key``::
7743-
7744-
sage: permutation.to_standard([5,8,2,5], cmp=lambda x,y: (x<y)-(x>y))
7745-
doctest:warning...:
7746-
DeprecationWarning: do not use 'cmp' but rather 'key' for comparison
7747-
See http://trac.sagemath.org/21435 for details.
7748-
[2, 1, 4, 3]
77497736
"""
7750-
if cmp is not None:
7751-
from sage.misc.superseded import deprecation
7752-
deprecation(21435, "do not use 'cmp' but rather 'key' for comparison")
77537737
ev_dict = evaluation_dict(p)
7754-
ordered_alphabet = sorted(ev_dict, cmp=cmp, key=key)
7738+
ordered_alphabet = sorted(ev_dict, key=key)
77557739
offset = 0
77567740
for k in ordered_alphabet:
77577741
temp = ev_dict[k]

src/sage/combinat/words/notes/word_inheritance_howto.txt

-5
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,6 @@ class that inherits from it) and implement the following methods.
1818
should return something that can be readily compared by
1919
Python. By default, the letters themselves are used.
2020

21-
- cmp_letters(x,y) -- a function to compare letters in the alphabet;
22-
should behave like Python's cmp function (that is, it returns -1, 0
23-
or 1, if x < y, x == y, x > y, respectively). By default, this points
24-
to Python's cmp function. (DEPRECATED, do not use, see :trac:`21435`)
25-
2621
By implementing the above methods, almost anything can be used as an
2722
alphabet.
2823

src/sage/doctest/control.py

-8
Original file line numberDiff line numberDiff line change
@@ -316,9 +316,6 @@ def __init__(self, options, args):
316316

317317
if isinstance(options.optional, six.string_types):
318318
s = options.optional.lower()
319-
if s == 'true':
320-
sage.misc.superseded.deprecation(18558, "Use --optional=all instead of --optional=true")
321-
s = "all"
322319
options.optional = set(s.split(','))
323320
if "all" in options.optional:
324321
# Special case to run all optional tests
@@ -947,11 +944,6 @@ def _optional_tags_string(self):
947944
sage: DC = DocTestController(DocTestDefaults(optional="all,and,some,more"), [])
948945
sage: DC._optional_tags_string()
949946
'all'
950-
sage: DC = DocTestController(DocTestDefaults(optional="true"), [])
951-
doctest:...: DeprecationWarning: Use --optional=all instead of --optional=true
952-
See http://trac.sagemath.org/18558 for details.
953-
sage: DC._optional_tags_string()
954-
'all'
955947
sage: DC = DocTestController(DocTestDefaults(optional="sage,openssl"), [])
956948
sage: DC._optional_tags_string()
957949
'openssl,sage'

0 commit comments

Comments
 (0)