Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 8ffbb94

Browse files
committed
Remove some deprecated code
1 parent e22bbb4 commit 8ffbb94

File tree

14 files changed

+9
-196
lines changed

14 files changed

+9
-196
lines changed

src/sage/functions/airy.py

-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@
4848
from sage.symbolic.function import BuiltinFunction
4949
from sage.symbolic.expression import Expression
5050
from sage.symbolic.ring import SR
51-
from sage.structure.coerce import parent as sage_structure_coerce_parent
5251
from sage.functions.other import gamma
5352
from sage.rings.integer_ring import ZZ
5453
from sage.rings.real_double import RDF

src/sage/functions/special.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,7 @@
168168
from sage.symbolic.function import BuiltinFunction, is_inexact
169169
from sage.symbolic.expression import Expression
170170
from sage.calculus.calculus import maxima
171-
from sage.structure.coerce import parent
172-
from sage.structure.element import get_coercion_model
173-
from sage.structure.parent import Parent
171+
from sage.structure.element import parent
174172
from sage.libs.mpmath import utils as mpmath_utils
175173
from sage.functions.all import sqrt, sin, cot, exp
176174
from sage.symbolic.all import I

src/sage/groups/perm_gps/all.py

-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,3 @@
1616
PermutationGroupMorphism = PermutationGroupMorphism_im_gens
1717

1818
from .cubegroup import CubeGroup, RubiksCube
19-
20-
from sage.misc.lazy_import import lazy_import
21-
lazy_import("sage.groups.perm_gps", "permgroup", "pg", deprecation=18140)

src/sage/libs/linbox/linbox.pyx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Linbox interface
88

99
from sage.libs.gmp.mpz cimport *
1010
from sage.rings.integer cimport Integer
11-
from sage.misc.misc import verbose, get_verbose, cputime, UNAME
11+
from sage.misc.misc import verbose, get_verbose
1212

1313
##########################################################################
1414
## Sparse matrices modulo p.

src/sage/misc/all.py

+1-9
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@
2323
from .temporary_file import tmp_dir, tmp_filename
2424

2525
from .misc_c import prod, running_total, balanced_sum
26-
lazy_import('sage.misc.misc_c', ['is_32_bit', 'is_64_bit'], deprecation=17460)
2726
mul = prod
2827
add = sum
2928

@@ -82,8 +81,6 @@
8281

8382
lazy_import("sage.misc.cython", ["cython_lambda", "cython_create_local_so"])
8483
lazy_import("sage.misc.cython_c", "cython_compile", "cython")
85-
lazy_import("sage.misc.cython_c", "cython_compile", "pyrex", deprecation=9552)
86-
lazy_import("sage.misc.cython_c", "cython_compile", "sagex", deprecation=9552)
8784

8885
from .persist import save, load, dumps, loads, db, db_save
8986

@@ -134,7 +131,6 @@
134131
n, N,
135132
objgens,
136133
objgen,
137-
one,
138134
order,
139135
rank,
140136
regulator,
@@ -145,7 +141,7 @@
145141
squarefree_part,
146142
symbolic_sum as sum,
147143
transpose,
148-
zero)
144+
)
149145

150146

151147
from .latex import LatexExpr, latex, view, pretty_print_default
@@ -201,7 +197,3 @@ def _latex_(self):
201197
elif not '~' in self:
202198
delim = '~'
203199
return r"""\verb%s%s%s"""%(delim, self.replace('\n\n','\n').replace('\n','; '), delim)
204-
205-
206-
lazy_import("sage.misc", "messaging", deprecation=18140)
207-

src/sage/misc/functional.py

-41
Original file line numberDiff line numberDiff line change
@@ -1321,26 +1321,6 @@ def objgen(x):
13211321
"""
13221322
return x.objgen()
13231323

1324-
def one(R):
1325-
"""
1326-
Returns the one element of the ring R.
1327-
1328-
EXAMPLES::
1329-
1330-
sage: one(RR)
1331-
doctest:...: DeprecationWarning: one(R) is deprecated, use R.one() or R(1) instead
1332-
See http://trac.sagemath.org/17158 for details.
1333-
1.00000000000000
1334-
sage: R.<x> = PolynomialRing(QQ)
1335-
sage: one(R)*x == x
1336-
True
1337-
sage: one(R) in R
1338-
True
1339-
"""
1340-
from sage.misc.superseded import deprecation
1341-
deprecation(17158, 'one(R) is deprecated, use R.one() or R(1) instead')
1342-
return R(1)
1343-
13441324
def order(x):
13451325
"""
13461326
Returns the order of x. If x is a ring or module element, this is
@@ -1554,24 +1534,3 @@ def transpose(x):
15541534
[3 6 9]
15551535
"""
15561536
return x.transpose()
1557-
1558-
1559-
def zero(R):
1560-
"""
1561-
Returns the zero element of the ring R.
1562-
1563-
EXAMPLES::
1564-
1565-
sage: zero(RR)
1566-
doctest:...: DeprecationWarning: zero(R) is deprecated, use R.zero() or R(0) instead
1567-
See http://trac.sagemath.org/17158 for details.
1568-
0.000000000000000
1569-
sage: R.<x> = PolynomialRing(QQ)
1570-
sage: zero(R) in R
1571-
True
1572-
sage: zero(R)*x == zero(R)
1573-
True
1574-
"""
1575-
from sage.misc.superseded import deprecation
1576-
deprecation(17158, 'zero(R) is deprecated, use R.zero() or R(0) instead')
1577-
return R(0)

src/sage/misc/interpreter.py

-3
This file was deleted.

src/sage/misc/misc.py

+1-28
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@
4444
Importing sxrange from here is deprecated. If you need to use it, please import it directly from sage.arith.srange
4545
See http://trac.sagemath.org/20094 for details.
4646
<generator object at 0x...>
47-
sage: sage.misc.misc.mul([3,4])
48-
doctest:...: DeprecationWarning:
49-
Importing prod from here is deprecated. If you need to use it, please import it directly from sage.misc.all
50-
See http://trac.sagemath.org/17460 for details.
51-
12
5247
sage: sage.misc.misc.cancel_alarm()
5348
doctest:...: DeprecationWarning:
5449
Importing cancel_alarm from here is deprecated. If you need to use it, please import it directly from cysignals.alarm
@@ -80,13 +75,7 @@
8075
from sage.misc.lazy_import import lazy_import
8176
lazy_import('sage.arith.srange', ('xsrange', 'srange', 'ellipsis_range', 'ellipsis_iter'), deprecation=20094)
8277
lazy_import('sage.arith.srange', 'xsrange', 'sxrange', deprecation=20094)
83-
lazy_import('sage.misc.temporary_file', ('tmp_dir', 'tmp_filename', 'delete_tmpfiles'), deprecation=17460)
84-
lazy_import('sage.misc.banner', ('version', 'banner'), deprecation=17460)
85-
lazy_import('sage.env', '*', deprecation=17460)
86-
lazy_import('sage.misc.decorators', ('infix_operator', 'decorator_defaults', 'sage_wraps'), deprecation=17460)
87-
lazy_import('sage.misc.all', ('prod', 'running_total', 'balanced_sum', 'is_64_bit', 'is_32_bit'), deprecation=17460)
8878
lazy_import('cysignals.alarm', ('alarm', 'cancel_alarm'), deprecation=20002)
89-
mul = prod
9079

9180

9281
from sage.env import DOT_SAGE, HOSTNAME
@@ -680,7 +669,7 @@ def coeff_repr(c, is_latex=False):
680669
return "(%s)"%s
681670
return s
682671

683-
def repr_lincomb(terms, coeffs = None, is_latex=False, scalar_mult="*", strip_one=False, repr_monomial = None, latex_scalar_mult = None):
672+
def repr_lincomb(terms, is_latex=False, scalar_mult="*", strip_one=False, repr_monomial = None, latex_scalar_mult = None):
684673
"""
685674
Compute a string representation of a linear combination of some
686675
formal symbols.
@@ -757,23 +746,7 @@ def repr_lincomb(terms, coeffs = None, is_latex=False, scalar_mult="*", strip_on
757746
758747
sage: repr_lincomb([('a',1), ('b',2), ('c',3)], repr_monomial = lambda s: s+"1")
759748
'a1 + 2*b1 + 3*c1'
760-
761-
762-
TESTS:
763-
764-
For backward compatibility (will be deprecated)::
765-
766-
sage: repr_lincomb(['a','b','c'], [1,2,3])
767-
doctest:...: DeprecationWarning: calling `repr_lincomb(monoms, coeffs)` is deprecated; please specify a list of tuples (monom, coeff) instead
768-
See http://trac.sagemath.org/12484 for details.
769-
'a + 2*b + 3*c'
770749
"""
771-
# For backward compatibility
772-
if coeffs is not None:
773-
from sage.misc.superseded import deprecation
774-
deprecation(12484, "calling `repr_lincomb(monoms, coeffs)` is deprecated; please specify a list of tuples (monom, coeff) instead")
775-
terms = zip(terms, coeffs)
776-
777750
# Setting scalar_mult: symbol used for scalar multiplication
778751
if is_latex:
779752
if latex_scalar_mult is not None:

src/sage/misc/misc_c.pyx

-7
Original file line numberDiff line numberDiff line change
@@ -426,13 +426,6 @@ cdef balanced_list_sum(L, Py_ssize_t offset, Py_ssize_t count, Py_ssize_t cutoff
426426
return balanced_list_sum(L, offset, k, cutoff) + balanced_list_sum(L, offset + k, count - k, cutoff)
427427

428428

429-
#################################################################
430-
# 32/64-bit computer?
431-
#################################################################
432-
is_64_bit = sys.maxsize >= 9223372036854775807
433-
is_32_bit = not is_64_bit
434-
435-
436429
cpdef list normalize_index(object key, int size):
437430
"""
438431
Normalize an index key and return a valid index or list of indices

src/sage/misc/temporary_file.py

+1-13
Original file line numberDiff line numberDiff line change
@@ -185,21 +185,8 @@ def graphics_filename(ext='.png'):
185185
True
186186
sage: fn.endswith('.jpeg')
187187
True
188-
189-
Historically, it was also possible to omit the dot. This has been
190-
changed in :trac:`16640` but it will still work for now::
191-
192-
sage: fn = graphics_filename("jpeg")
193-
doctest:...: DeprecationWarning: extension must now include the dot
194-
See http://trac.sagemath.org/16640 for details.
195-
sage: fn.endswith('.jpeg')
196-
True
197188
"""
198189
import sage.plot.plot
199-
from sage.misc.superseded import deprecation
200-
if ext[0] not in '.-':
201-
deprecation(16640, "extension must now include the dot")
202-
ext = '.' + ext
203190
if sage.plot.plot.EMBEDDED_MODE:
204191
# Don't use this unsafe function except in the notebook, #15515
205192
i = 0
@@ -208,6 +195,7 @@ def graphics_filename(ext='.png'):
208195
filename = 'sage%d%s'%(i,ext)
209196
return filename
210197
else:
198+
from sage.misc.superseded import deprecation
211199
deprecation(17234,'use tmp_filename instead')
212200
return tmp_filename(ext=ext)
213201

src/sage/modules/all.py

-3
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@
2525
from .vector_space_morphism import linear_transformation
2626

2727
from sage.misc.lazy_import import lazy_import
28-
lazy_import("sage.modules",
29-
("vector_symbolic_dense", "vector_callable_symbolic_dense"),
30-
deprecation=18140)
3128

3229
lazy_import('sage.modules.filtered_vector_space', 'FilteredVectorSpace')
3330
lazy_import('sage.modules.multi_filtered_vector_space', 'MultiFilteredVectorSpace')

src/sage/plot/graphics.py

+4-38
Original file line numberDiff line numberDiff line change
@@ -1342,7 +1342,7 @@ def _set_scale(self, figure, scale=None, base=None):
13421342
labelspacing=0.02, loc='best',
13431343
markerscale=0.6, ncol=1, numpoints=2,
13441344
shadow=True, title=None)
1345-
def show(self, filename=None, linkmode=False, **kwds):
1345+
def show(self, **kwds):
13461346
r"""
13471347
Show this graphics image immediately.
13481348
@@ -2003,31 +2003,7 @@ def show(self, filename=None, linkmode=False, **kwds):
20032003
...
20042004
ValueError: figsize should be a positive number or a list of two positive numbers, not [2, 3, 4]
20052005
sage: P.show(figsize=[sqrt(2),sqrt(3)])
2006-
2007-
::
2008-
2009-
sage: P = plot(x^2,(x,0,1))
2010-
sage: P.show(linkmode=True)
2011-
doctest:...: DeprecationWarning: the filename and linkmode arguments are deprecated, use save() to save
2012-
See http://trac.sagemath.org/17234 for details.
2013-
doctest:...: DeprecationWarning: use tmp_filename instead
2014-
See http://trac.sagemath.org/17234 for details.
2015-
"<img src='cell:///...png'>"
2016-
"""
2017-
if filename or linkmode:
2018-
from sage.misc.superseded import deprecation
2019-
deprecation(17234,'the filename and linkmode arguments are deprecated, '
2020-
'use save() to save')
2021-
if filename is None:
2022-
from sage.misc.temporary_file import graphics_filename
2023-
filename = graphics_filename()
2024-
self.save(filename, **kwds)
2025-
if linkmode:
2026-
return "<img src='cell://%s'>" % filename
2027-
else:
2028-
html("<img src='cell://%s'>" % filename)
2029-
return
2030-
2006+
"""
20312007
from sage.repl.rich_output import get_display_manager
20322008
dm = get_display_manager()
20332009
dm.display_immediately(self, **kwds)
@@ -3078,7 +3054,7 @@ def save_image(self, filename=None, *args, **kwds):
30783054
labelspacing=0.02, loc='best',
30793055
markerscale=0.6, ncol=1, numpoints=2,
30803056
shadow=True, title=None)
3081-
def save(self, filename=None, **kwds):
3057+
def save(self, filename, **kwds):
30823058
r"""
30833059
Save the graphics to an image file.
30843060
@@ -3172,11 +3148,6 @@ def save(self, filename=None, **kwds):
31723148
transparent = options.pop('transparent')
31733149
fig_tight = options.pop('fig_tight')
31743150

3175-
if filename is None:
3176-
from sage.misc.superseded import deprecation
3177-
deprecation(17234,'the filename argument is now mandatory')
3178-
from sage.misc.temporary_file import graphics_filename
3179-
filename = graphics_filename()
31803151
ext = os.path.splitext(filename)[1].lower()
31813152

31823153
if ext not in ALLOWED_EXTENSIONS:
@@ -3591,7 +3562,7 @@ def append(self, g):
35913562
# Not clear if there is a way to do this
35923563
raise NotImplementedError('Appending to a graphics array is not yet implemented')
35933564

3594-
def save(self, filename=None, dpi=DEFAULT_DPI, figsize=None, axes=None,
3565+
def save(self, filename, dpi=DEFAULT_DPI, figsize=None, axes=None,
35953566
**kwds):
35963567
r"""
35973568
Save the graphics array.
@@ -3636,11 +3607,6 @@ def save(self, filename=None, dpi=DEFAULT_DPI, figsize=None, axes=None,
36363607
"""
36373608
if figsize is not None:
36383609
self._set_figsize_(figsize)
3639-
if filename is None:
3640-
from sage.misc.superseded import deprecation
3641-
deprecation(17234,'the filename argument is now mandatory')
3642-
from sage.misc.temporary_file import graphics_filename
3643-
filename = graphics_filename()
36443610

36453611
#glist is a list of Graphics objects:
36463612
glist = self._glist

src/sage/repl/load.py

-43
Original file line numberDiff line numberDiff line change
@@ -195,54 +195,11 @@ def load(filename, globals, attach=False):
195195
Traceback (most recent call last):
196196
...
197197
IOError: did not find file 'this file should not exist' to load or attach
198-
199-
Evaluating a filename is deprecated::
200-
201-
sage: sage.repl.load.load("tmp_filename(ext='.py')", globals())
202-
doctest:...: DeprecationWarning: using unevaluated expressions as argument to load() is dangerous and deprecated
203-
See http://trac.sagemath.org/17654 for details.
204-
205-
Test filenames separated by spaces (deprecated)::
206-
207-
sage: t = tmp_filename(ext='.py')
208-
sage: with open(t, 'w') as f:
209-
....: f.write("print 'hello'\n")
210-
sage: sage.repl.load.load(t + " " + t, globals())
211-
hello
212-
hello
213-
doctest:...: DeprecationWarning: using multiple filenames separated by spaces as load() argument is dangerous and deprecated
214-
See http://trac.sagemath.org/17654 for details.
215198
"""
216199
if attach:
217200
from sage.repl.attach import add_attached_file
218201

219202
filename = os.path.expanduser(filename)
220-
if not os.path.exists(filename):
221-
try:
222-
# Try *evaluating* the filename
223-
filename = eval(filename, globals).strip()
224-
except Exception:
225-
# Handle multiple input files separated by spaces, which was
226-
# maybe a bad idea, but which we have to handle for backwards
227-
# compatibility.
228-
v = filename.split()
229-
if len(v) > 1:
230-
try:
231-
for f in v:
232-
load(f, globals, attach=attach)
233-
except IOError:
234-
# Splitting the filename didn't work, pretend it
235-
# didn't happen :-)
236-
pass
237-
else:
238-
# Only show deprecation message if the filename
239-
# splitting worked.
240-
from sage.misc.superseded import deprecation
241-
deprecation(17654, 'using multiple filenames separated by spaces as load() argument is dangerous and deprecated')
242-
return
243-
else:
244-
from sage.misc.superseded import deprecation
245-
deprecation(17654, 'using unevaluated expressions as argument to load() is dangerous and deprecated')
246203

247204
if filename.lower().startswith(('http://', 'https://')):
248205
if attach:

src/sage/structure/coerce.pyx

-3
Original file line numberDiff line numberDiff line change
@@ -94,9 +94,6 @@ from sage.categories.map cimport Map
9494
from sage.categories.morphism import IdentityMorphism
9595
from sage.categories.action cimport Action, InverseAction, PrecomposedAction
9696

97-
from sage.misc.lazy_import import LazyImport
98-
parent = LazyImport('sage.structure.all', 'parent', deprecation=17533)
99-
10097
import traceback
10198

10299

0 commit comments

Comments
 (0)