@@ -63,7 +63,7 @@ def __init__(self):
6363 sage: sage.misc.nested_class_test.TestParent1()
6464 <sage.misc.nested_class_test.TestParent1_with_category object at ...>
6565 """
66- from sage .categories .all import Sets
66+ from sage .categories .sets_cat import Sets
6767 Parent .__init__ (self , category = Sets ())
6868
6969 class Element (ElementWrapper ):
@@ -80,7 +80,7 @@ def __init__(self):
8080 ...
8181 TypeError: metaclass conflict: the metaclass of a derived class must be a (non-strict) subclass of the metaclasses of all its bases
8282 """
83- from sage .categories .all import Sets
83+ from sage .categories .sets_cat import Sets
8484 Parent .__init__ (self , category = Sets ())
8585
8686 class Element (ElementWrapper ):
@@ -96,7 +96,7 @@ def __init__(self):
9696 sage: sage.misc.nested_class_test.TestParent3()
9797 <sage.misc.nested_class_test.TestParent3_with_category object at ...>
9898 """
99- from sage .categories .all import Sets
99+ from sage .categories .sets_cat import Sets
100100 Parent .__init__ (self , category = Sets ())
101101
102102 class Element (ElementWrapper ):
@@ -111,7 +111,7 @@ def __init__(self):
111111 sage: sage.misc.nested_class_test.TestParent4()
112112 <sage.misc.nested_class_test.TestParent4_with_category object at ...>
113113 """
114- from sage .categories .all import Sets
114+ from sage .categories .sets_cat import Sets
115115 Parent .__init__ (self , category = Sets ())
116116
117117 def __eq__ (self , other ):
0 commit comments