@@ -96,18 +96,17 @@ class RealSet.
96
96
# (at your option) any later version.
97
97
# https://www.gnu.org/licenses/
98
98
# ****************************************************************************
99
+ from heapq import merge
99
100
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
104
101
from 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
106
104
from sage .rings .integer_ring import ZZ
107
105
from 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
111
110
112
111
113
112
@richcmp_method
@@ -2354,8 +2353,6 @@ def is_subset(self, *other):
2354
2353
"""
2355
2354
return RealSet (* other ).intersection (self ) == self
2356
2355
2357
- is_included_in = deprecated_function_alias (31927 , is_subset )
2358
-
2359
2356
def _an_element_ (self ):
2360
2357
"""
2361
2358
Return a point of the set.
@@ -2601,8 +2598,6 @@ def is_disjoint(self, *other):
2601
2598
other = RealSet (* other )
2602
2599
return self .are_pairwise_disjoint (self , other )
2603
2600
2604
- is_disjoint_from = deprecated_function_alias (31927 , is_disjoint )
2605
-
2606
2601
@staticmethod
2607
2602
def are_pairwise_disjoint (* real_set_collection ):
2608
2603
"""
0 commit comments