@@ -42,15 +42,15 @@ AUTHOR:
42
42
- Robert Bradshaw
43
43
"""
44
44
45
- # * ****************************************************************************
45
+ # ****************************************************************************
46
46
# Copyright (C) 2009 Robert Bradshaw <[email protected] >
47
47
#
48
48
# This program is free software: you can redistribute it and/or modify
49
49
# it under the terms of the GNU General Public License as published by
50
50
# the Free Software Foundation, either version 2 of the License, or
51
51
# (at your option) any later version.
52
- # http ://www.gnu.org/licenses/
53
- # * ****************************************************************************
52
+ # https ://www.gnu.org/licenses/
53
+ # ****************************************************************************
54
54
55
55
# Keep OLD division semantics for Python 2 compatibility, such that
56
56
# lazy imports support old and true division.
@@ -101,7 +101,7 @@ cpdef finish_startup():
101
101
102
102
cpdef bint is_during_startup():
103
103
"""
104
- Return whether Sage is currently starting up
104
+ Return whether Sage is currently starting up.
105
105
106
106
OUTPUT:
107
107
@@ -283,7 +283,7 @@ cdef class LazyImport(object):
283
283
284
284
def _sage_src_ (self ):
285
285
"""
286
- Returns the source of the wrapped object for introspection.
286
+ Return the source of the wrapped object for introspection.
287
287
288
288
EXAMPLES::
289
289
@@ -296,7 +296,7 @@ cdef class LazyImport(object):
296
296
297
297
def _sage_argspec_ (self ):
298
298
"""
299
- Returns the argspec of the wrapped object for introspection.
299
+ Return the argspec of the wrapped object for introspection.
300
300
301
301
EXAMPLES::
302
302
@@ -975,7 +975,7 @@ cdef class LazyImport(object):
975
975
976
976
977
977
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 ):
979
979
"""
980
980
Create a lazy import object and inject it into the caller's global
981
981
namespace. For the purposes of introspection and calling, this is
@@ -1067,9 +1067,6 @@ def lazy_import(module, names, as_=None, *,
1067
1067
See http://trac.sagemath.org/14275 for details.
1068
1068
5-adic Field with capped relative precision 20
1069
1069
"""
1070
- if overwrite is not None :
1071
- from sage.misc.superseded import deprecation
1072
- deprecation(22755 , " lazy_import(overwrite=False) is no longer supported" )
1073
1070
if as_ is None :
1074
1071
as_ = names
1075
1072
if isinstance (names, basestring ):
0 commit comments