Skip to content

Commit 7f1da65

Browse files
committed
2 parents 5789608 + 9837dec commit 7f1da65

File tree

4 files changed

+100
-20
lines changed

4 files changed

+100
-20
lines changed

src/sage/all.py

+6
Original file line numberDiff line numberDiff line change
@@ -291,6 +291,12 @@ def quit_sage(verbose=True):
291291
set_random_seed()
292292

293293

294+
# Relink imported lazy_import objects to point to the appropriate namespace
295+
296+
from sage.misc.lazy_import import clean_namespace
297+
clean_namespace()
298+
del clean_namespace
299+
294300
# From now on it is ok to resolve lazy imports
295301
sage.misc.lazy_import.finish_startup()
296302

src/sage/combinat/partition.py

+20-20
Original file line numberDiff line numberDiff line change
@@ -5813,26 +5813,7 @@ def __classcall_private__(cls, n=None, **kwargs):
58135813
"""
58145814
if n == infinity:
58155815
raise ValueError("n cannot be infinite")
5816-
if n is None or n is NN or n is NonNegativeIntegers():
5817-
if len(kwargs) > 0:
5818-
if len(kwargs) == 1:
5819-
if 'max_part' in kwargs:
5820-
return Partitions_all_bounded(kwargs['max_part'])
5821-
if 'regular' in kwargs:
5822-
return RegularPartitions_all(kwargs['regular'])
5823-
if 'restricted' in kwargs:
5824-
return RestrictedPartitions_all(kwargs['restricted'])
5825-
elif len(kwargs) == 2:
5826-
if 'regular' in kwargs:
5827-
if kwargs['regular'] < 1 or kwargs['regular'] not in ZZ:
5828-
raise ValueError("the regularity must be a positive integer")
5829-
if 'max_part' in kwargs:
5830-
return RegularPartitions_bounded(kwargs['regular'], kwargs['max_part'])
5831-
if 'max_length' in kwargs:
5832-
return RegularPartitions_truncated(kwargs['regular'], kwargs['max_length'])
5833-
raise ValueError("the size must be specified with any keyword argument")
5834-
return Partitions_all()
5835-
elif isinstance(n, (int,Integer)):
5816+
if isinstance(n, (int,Integer)):
58365817
if len(kwargs) == 0:
58375818
return Partitions_n(n)
58385819

@@ -5886,6 +5867,25 @@ def __classcall_private__(cls, n=None, **kwargs):
58865867
kwargs.get('min_length',0))
58875868
del kwargs['inner']
58885869
return Partitions_with_constraints(n, **kwargs)
5870+
elif n is None or n is NN or n is NonNegativeIntegers():
5871+
if len(kwargs) > 0:
5872+
if len(kwargs) == 1:
5873+
if 'max_part' in kwargs:
5874+
return Partitions_all_bounded(kwargs['max_part'])
5875+
if 'regular' in kwargs:
5876+
return RegularPartitions_all(kwargs['regular'])
5877+
if 'restricted' in kwargs:
5878+
return RestrictedPartitions_all(kwargs['restricted'])
5879+
elif len(kwargs) == 2:
5880+
if 'regular' in kwargs:
5881+
if kwargs['regular'] < 1 or kwargs['regular'] not in ZZ:
5882+
raise ValueError("the regularity must be a positive integer")
5883+
if 'max_part' in kwargs:
5884+
return RegularPartitions_bounded(kwargs['regular'], kwargs['max_part'])
5885+
if 'max_length' in kwargs:
5886+
return RegularPartitions_truncated(kwargs['regular'], kwargs['max_length'])
5887+
raise ValueError("the size must be specified with any keyword argument")
5888+
return Partitions_all()
58895889

58905890
raise ValueError("n must be an integer or be equal to one of "
58915891
"None, NN, NonNegativeIntegers()")

src/sage/misc/lazy_import.pyx

+72
Original file line numberDiff line numberDiff line change
@@ -1164,6 +1164,78 @@ def get_star_imports(module_name):
11641164
return all
11651165

11661166

1167+
def attributes(a):
1168+
"""
1169+
Return the private attributes of a :class:`LazyImport` object in a dictionary.
1170+
1171+
This is for debugging and doctesting purposes only.
1172+
1173+
EXAMPLES::
1174+
1175+
sage: from sage.misc.lazy_import import attributes
1176+
sage: lazy_import("sage.all", "foo")
1177+
sage: attributes(foo)['_namespace'] is globals()
1178+
True
1179+
sage: D = attributes(foo)
1180+
sage: del D['_namespace']
1181+
sage: D
1182+
{'_as_name': 'foo',
1183+
'_at_startup': False,
1184+
'_deprecation': None,
1185+
'_module': 'sage.all',
1186+
'_name': 'foo',
1187+
'_object': None}
1188+
"""
1189+
cdef LazyImport b
1190+
b = a
1191+
return {"_object": b._object,
1192+
"_module": b._module,
1193+
"_name": b._name,
1194+
"_as_name": b._as_name,
1195+
"_namespace": b._namespace,
1196+
"_at_startup": b._at_startup,
1197+
"_deprecation": b._deprecation}
1198+
1199+
1200+
def clean_namespace(namespace=None):
1201+
"""
1202+
Adjust :class:`LazyImport` bindings in given namespace to refer to this actual namespace.
1203+
1204+
When :class:`LazyImport` objects are imported into other namespaces via normal ``import``
1205+
instructions, the data stored on a :class:`LazyImport` object that helps it to adjust the
1206+
binding in the namespace to the actual imported object upon access is not adjusted.
1207+
This routine fixes that.
1208+
1209+
INPUT:
1210+
1211+
- ``namespace`` -- the namespace where importing the names; by default,
1212+
import the names to current namespace
1213+
1214+
EXAMPLES::
1215+
1216+
sage: from sage.misc.lazy_import import attributes, clean_namespace
1217+
sage: from sage.calculus.calculus import maxima as C
1218+
sage: attributes(C)['_as_name']
1219+
'maxima'
1220+
sage: attributes(C)['_namespace'] is sage.calculus.calculus.__dict__
1221+
True
1222+
sage: clean_namespace(globals())
1223+
sage: attributes(C)['_as_name']
1224+
'C'
1225+
sage: attributes(C)['_namespace'] is globals()
1226+
True
1227+
"""
1228+
cdef LazyImport w
1229+
if namespace is None:
1230+
namespace = inspect.currentframe().f_locals
1231+
for k, v in namespace.items():
1232+
if type(v) is LazyImport:
1233+
w = v
1234+
if w._namespace is not None and (w._namespace is not namespace or w._as_name != k):
1235+
namespace[k] = LazyImport(w._module, w._name, as_name=k, at_startup=w._at_startup,
1236+
namespace=namespace, deprecation=w._deprecation)
1237+
1238+
11671239
# Add support for _instancedoc_
11681240
from sage.misc.instancedoc import instancedoc
11691241
instancedoc(LazyImport)

src/sage/repl/user_globals.py

+2
Original file line numberDiff line numberDiff line change
@@ -156,6 +156,8 @@ def initialize_globals(all, g=None):
156156
for key in dir(all):
157157
if key[0] != '_':
158158
user_globals[key] = getattr(all, key)
159+
from sage.misc.lazy_import import clean_namespace
160+
clean_namespace(user_globals)
159161

160162

161163
def get_global(name):

0 commit comments

Comments
 (0)