@@ -96,18 +96,17 @@ class RealSet.
9696# (at your option) any later version.
9797# https://www.gnu.org/licenses/
9898# ****************************************************************************
99+ from heapq import merge
99100
100- from sage .structure .richcmp import richcmp , richcmp_method
101- from sage .structure .parent import Parent
102- from sage .structure .unique_representation import UniqueRepresentation
103- from sage .categories .topological_spaces import TopologicalSpaces
104101from sage .categories .sets_cat import EmptySetError
105- from sage .sets .set import Set_base , Set_boolean_operators , Set_add_sub_operators
102+ from sage .categories .topological_spaces import TopologicalSpaces
103+ from sage .rings .infinity import infinity , minus_infinity
106104from sage .rings .integer_ring import ZZ
107105from sage .rings .real_lazy import LazyFieldElement , RLF
108- from sage .rings .infinity import infinity , minus_infinity
109- from sage .misc .superseded import deprecated_function_alias
110- from heapq import merge
106+ from sage .sets .set import Set_base , Set_boolean_operators , Set_add_sub_operators
107+ from sage .structure .parent import Parent
108+ from sage .structure .richcmp import richcmp , richcmp_method
109+ from sage .structure .unique_representation import UniqueRepresentation
111110
112111
113112@richcmp_method
@@ -2354,8 +2353,6 @@ def is_subset(self, *other):
23542353 """
23552354 return RealSet (* other ).intersection (self ) == self
23562355
2357- is_included_in = deprecated_function_alias (31927 , is_subset )
2358-
23592356 def _an_element_ (self ):
23602357 """
23612358 Return a point of the set.
@@ -2601,8 +2598,6 @@ def is_disjoint(self, *other):
26012598 other = RealSet (* other )
26022599 return self .are_pairwise_disjoint (self , other )
26032600
2604- is_disjoint_from = deprecated_function_alias (31927 , is_disjoint )
2605-
26062601 @staticmethod
26072602 def are_pairwise_disjoint (* real_set_collection ):
26082603 """
0 commit comments