blob: ebe62c6f17ba2c7d9a24d029c2009b82bee05b40 [file] [log] [blame]
Guido van Rossumd6cf3af2002-08-19 16:19:15 +00001"""Classes to represent arbitrary sets (including sets of sets).
2
3This module implements sets using dictionaries whose values are
4ignored. The usual operations (union, intersection, deletion, etc.)
5are provided as both methods and operators.
6
Guido van Rossum290f1872002-08-20 20:05:23 +00007Important: sets are not sequences! While they support 'x in s',
8'len(s)', and 'for x in s', none of those operations are unique for
9sequences; for example, mappings support all three as well. The
10characteristic operation for sequences is subscripting with small
11integers: s[i], for i in range(len(s)). Sets don't support
12subscripting at all. Also, sequences allow multiple occurrences and
13their elements have a definite order; sets on the other hand don't
14record multiple occurrences and don't remember the order of element
15insertion (which is why they don't support s[i]).
16
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000017The following classes are provided:
18
19BaseSet -- All the operations common to both mutable and immutable
20 sets. This is an abstract class, not meant to be directly
21 instantiated.
22
23Set -- Mutable sets, subclass of BaseSet; not hashable.
24
25ImmutableSet -- Immutable sets, subclass of BaseSet; hashable.
26 An iterable argument is mandatory to create an ImmutableSet.
27
Raymond Hettingerf6fe4ed2003-06-26 18:49:28 +000028_TemporarilyImmutableSet -- A wrapper around a Set, hashable,
29 giving the same hash value as the immutable set equivalent
30 would have. Do not use this class directly.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000031
32Only hashable objects can be added to a Set. In particular, you cannot
33really add a Set as an element to another Set; if you try, what is
Raymond Hettingerede3a0d2002-08-20 23:34:01 +000034actually added is an ImmutableSet built from it (it compares equal to
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000035the one you tried adding).
36
37When you ask if `x in y' where x is a Set and y is a Set or
38ImmutableSet, x is wrapped into a _TemporarilyImmutableSet z, and
39what's tested is actually `z in y'.
40
41"""
42
43# Code history:
44#
45# - Greg V. Wilson wrote the first version, using a different approach
46# to the mutable/immutable problem, and inheriting from dict.
47#
48# - Alex Martelli modified Greg's version to implement the current
49# Set/ImmutableSet approach, and make the data an attribute.
50#
51# - Guido van Rossum rewrote much of the code, made some API changes,
52# and cleaned up the docstrings.
Guido van Rossum26588222002-08-21 02:44:04 +000053#
Guido van Rossum9f872932002-08-21 03:20:44 +000054# - Raymond Hettinger added a number of speedups and other
Guido van Rossumdc61cdf2002-08-22 17:23:33 +000055# improvements.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000056
57
58__all__ = ['BaseSet', 'Set', 'ImmutableSet']
Raymond Hettinger60eca932003-02-09 06:40:58 +000059from itertools import ifilter, ifilterfalse
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000060
61class BaseSet(object):
62 """Common base class for mutable and immutable sets."""
63
64 __slots__ = ['_data']
65
66 # Constructor
67
Guido van Rossum5033b362002-08-20 21:38:37 +000068 def __init__(self):
69 """This is an abstract class."""
70 # Don't call this from a concrete subclass!
71 if self.__class__ is BaseSet:
Guido van Rossum9f872932002-08-21 03:20:44 +000072 raise TypeError, ("BaseSet is an abstract class. "
73 "Use Set or ImmutableSet.")
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000074
75 # Standard protocols: __len__, __repr__, __str__, __iter__
76
77 def __len__(self):
78 """Return the number of elements of a set."""
79 return len(self._data)
80
81 def __repr__(self):
82 """Return string representation of a set.
83
84 This looks like 'Set([<list of elements>])'.
85 """
86 return self._repr()
87
88 # __str__ is the same as __repr__
89 __str__ = __repr__
90
91 def _repr(self, sorted=False):
92 elements = self._data.keys()
93 if sorted:
94 elements.sort()
95 return '%s(%r)' % (self.__class__.__name__, elements)
96
97 def __iter__(self):
98 """Return an iterator over the elements or a set.
99
100 This is the keys iterator for the underlying dict.
101 """
102 return self._data.iterkeys()
103
Tim Peters44f14b02003-03-02 00:19:49 +0000104 # Three-way comparison is not supported. However, because __eq__ is
105 # tried before __cmp__, if Set x == Set y, x.__eq__(y) returns True and
106 # then cmp(x, y) returns 0 (Python doesn't actually call __cmp__ in this
107 # case).
Guido van Rossum50e92232003-01-14 16:45:04 +0000108
109 def __cmp__(self, other):
110 raise TypeError, "can't compare sets using cmp()"
111
Tim Peters44f14b02003-03-02 00:19:49 +0000112 # Equality comparisons using the underlying dicts. Mixed-type comparisons
113 # are allowed here, where Set == z for non-Set z always returns False,
114 # and Set != z always True. This allows expressions like "x in y" to
115 # give the expected result when y is a sequence of mixed types, not
116 # raising a pointless TypeError just because y contains a Set, or x is
117 # a Set and y contain's a non-set ("in" invokes only __eq__).
118 # Subtle: it would be nicer if __eq__ and __ne__ could return
119 # NotImplemented instead of True or False. Then the other comparand
120 # would get a chance to determine the result, and if the other comparand
121 # also returned NotImplemented then it would fall back to object address
122 # comparison (which would always return False for __eq__ and always
123 # True for __ne__). However, that doesn't work, because this type
124 # *also* implements __cmp__: if, e.g., __eq__ returns NotImplemented,
125 # Python tries __cmp__ next, and the __cmp__ here then raises TypeError.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000126
127 def __eq__(self, other):
Tim Peters44f14b02003-03-02 00:19:49 +0000128 if isinstance(other, BaseSet):
129 return self._data == other._data
130 else:
131 return False
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000132
133 def __ne__(self, other):
Tim Peters44f14b02003-03-02 00:19:49 +0000134 if isinstance(other, BaseSet):
135 return self._data != other._data
136 else:
137 return True
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000138
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000139 # Copying operations
140
141 def copy(self):
142 """Return a shallow copy of a set."""
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000143 result = self.__class__()
Raymond Hettingerd9c91512002-08-21 13:20:51 +0000144 result._data.update(self._data)
145 return result
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000146
147 __copy__ = copy # For the copy module
148
149 def __deepcopy__(self, memo):
150 """Return a deep copy of a set; used by copy module."""
151 # This pre-creates the result and inserts it in the memo
152 # early, in case the deep copy recurses into another reference
153 # to this same set. A set can't be an element of itself, but
154 # it can certainly contain an object that has a reference to
155 # itself.
156 from copy import deepcopy
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000157 result = self.__class__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000158 memo[id(self)] = result
159 data = result._data
160 value = True
161 for elt in self:
162 data[deepcopy(elt, memo)] = value
163 return result
164
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000165 # Standard set operations: union, intersection, both differences.
166 # Each has an operator version (e.g. __or__, invoked with |) and a
167 # method version (e.g. union).
Tim Peters4924db12002-08-25 17:10:17 +0000168 # Subtle: Each pair requires distinct code so that the outcome is
169 # correct when the type of other isn't suitable. For example, if
170 # we did "union = __or__" instead, then Set().union(3) would return
171 # NotImplemented instead of raising TypeError (albeit that *why* it
172 # raises TypeError as-is is also a bit subtle).
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000173
174 def __or__(self, other):
175 """Return the union of two sets as a new set.
176
177 (I.e. all elements that are in either set.)
178 """
179 if not isinstance(other, BaseSet):
180 return NotImplemented
Tim Peters37faed22002-08-25 19:21:27 +0000181 result = self.__class__()
182 result._data = self._data.copy()
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000183 result._data.update(other._data)
184 return result
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000185
186 def union(self, other):
187 """Return the union of two sets as a new set.
188
189 (I.e. all elements that are in either set.)
190 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000191 return self | other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000192
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000193 def __and__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000194 """Return the intersection of two sets as a new set.
195
196 (I.e. all elements that are in both sets.)
197 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000198 if not isinstance(other, BaseSet):
199 return NotImplemented
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000200 if len(self) <= len(other):
201 little, big = self, other
202 else:
203 little, big = other, self
Raymond Hettingera3a53182003-02-02 14:27:19 +0000204 common = ifilter(big._data.has_key, little)
Tim Petersd33e6be2002-08-25 19:12:45 +0000205 return self.__class__(common)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000206
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000207 def intersection(self, other):
208 """Return the intersection of two sets as a new set.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000209
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000210 (I.e. all elements that are in both sets.)
211 """
212 return self & other
213
214 def __xor__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000215 """Return the symmetric difference of two sets as a new set.
216
217 (I.e. all elements that are in exactly one of the sets.)
218 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000219 if not isinstance(other, BaseSet):
220 return NotImplemented
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000221 result = self.__class__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000222 data = result._data
223 value = True
Tim Peters334b4a52002-08-25 19:47:54 +0000224 selfdata = self._data
225 otherdata = other._data
Raymond Hettinger60eca932003-02-09 06:40:58 +0000226 for elt in ifilterfalse(otherdata.has_key, selfdata):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000227 data[elt] = value
Raymond Hettinger60eca932003-02-09 06:40:58 +0000228 for elt in ifilterfalse(selfdata.has_key, otherdata):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000229 data[elt] = value
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000230 return result
231
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000232 def symmetric_difference(self, other):
233 """Return the symmetric difference of two sets as a new set.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000234
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000235 (I.e. all elements that are in exactly one of the sets.)
236 """
237 return self ^ other
238
239 def __sub__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000240 """Return the difference of two sets as a new Set.
241
242 (I.e. all elements that are in this set and not in the other.)
243 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000244 if not isinstance(other, BaseSet):
245 return NotImplemented
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000246 result = self.__class__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000247 data = result._data
248 value = True
Raymond Hettinger60eca932003-02-09 06:40:58 +0000249 for elt in ifilterfalse(other._data.has_key, self):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000250 data[elt] = value
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000251 return result
252
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000253 def difference(self, other):
254 """Return the difference of two sets as a new Set.
255
256 (I.e. all elements that are in this set and not in the other.)
257 """
258 return self - other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000259
260 # Membership test
261
262 def __contains__(self, element):
263 """Report whether an element is a member of a set.
264
265 (Called in response to the expression `element in self'.)
266 """
267 try:
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000268 return element in self._data
269 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000270 transform = getattr(element, "__as_temporarily_immutable__", None)
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000271 if transform is None:
272 raise # re-raise the TypeError exception we caught
273 return transform() in self._data
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000274
275 # Subset and superset test
276
277 def issubset(self, other):
278 """Report whether another set contains this set."""
279 self._binary_sanity_check(other)
Raymond Hettinger43db0d62002-08-21 02:22:08 +0000280 if len(self) > len(other): # Fast check for obvious cases
281 return False
Raymond Hettinger60eca932003-02-09 06:40:58 +0000282 for elt in ifilterfalse(other._data.has_key, self):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000283 return False
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000284 return True
285
286 def issuperset(self, other):
287 """Report whether this set contains another set."""
288 self._binary_sanity_check(other)
Raymond Hettinger43db0d62002-08-21 02:22:08 +0000289 if len(self) < len(other): # Fast check for obvious cases
290 return False
Raymond Hettinger60eca932003-02-09 06:40:58 +0000291 for elt in ifilterfalse(self._data.has_key, other):
Tim Peters322d5532003-02-04 00:38:20 +0000292 return False
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000293 return True
294
Tim Petersea76c982002-08-25 18:43:10 +0000295 # Inequality comparisons using the is-subset relation.
296 __le__ = issubset
297 __ge__ = issuperset
298
299 def __lt__(self, other):
300 self._binary_sanity_check(other)
301 return len(self) < len(other) and self.issubset(other)
302
303 def __gt__(self, other):
304 self._binary_sanity_check(other)
305 return len(self) > len(other) and self.issuperset(other)
306
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000307 # Assorted helpers
308
309 def _binary_sanity_check(self, other):
310 # Check that the other argument to a binary operation is also
311 # a set, raising a TypeError otherwise.
312 if not isinstance(other, BaseSet):
313 raise TypeError, "Binary operation only permitted between sets"
314
315 def _compute_hash(self):
316 # Calculate hash code for a set by xor'ing the hash codes of
Tim Petersd06d0302002-08-23 20:06:42 +0000317 # the elements. This ensures that the hash code does not depend
318 # on the order in which elements are added to the set. This is
319 # not called __hash__ because a BaseSet should not be hashable;
320 # only an ImmutableSet is hashable.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000321 result = 0
322 for elt in self:
323 result ^= hash(elt)
324 return result
325
Guido van Rossum9f872932002-08-21 03:20:44 +0000326 def _update(self, iterable):
327 # The main loop for update() and the subclass __init__() methods.
Guido van Rossum9f872932002-08-21 03:20:44 +0000328 data = self._data
Raymond Hettinger1a8d1932002-08-29 15:13:50 +0000329
330 # Use the fast update() method when a dictionary is available.
331 if isinstance(iterable, BaseSet):
332 data.update(iterable._data)
333 return
Raymond Hettinger1a8d1932002-08-29 15:13:50 +0000334
Tim Peters0ec1ddc2002-11-08 05:26:52 +0000335 value = True
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000336
337 if type(iterable) in (list, tuple, xrange):
338 # Optimized: we know that __iter__() and next() can't
339 # raise TypeError, so we can move 'try:' out of the loop.
340 it = iter(iterable)
341 while True:
342 try:
343 for element in it:
344 data[element] = value
345 return
346 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000347 transform = getattr(element, "__as_immutable__", None)
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000348 if transform is None:
349 raise # re-raise the TypeError exception we caught
350 data[transform()] = value
351 else:
352 # Safe: only catch TypeError where intended
353 for element in iterable:
354 try:
Raymond Hettinger80d21af2002-08-21 04:12:03 +0000355 data[element] = value
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000356 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000357 transform = getattr(element, "__as_immutable__", None)
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000358 if transform is None:
359 raise # re-raise the TypeError exception we caught
360 data[transform()] = value
Guido van Rossum9f872932002-08-21 03:20:44 +0000361
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000362
363class ImmutableSet(BaseSet):
364 """Immutable set class."""
365
Guido van Rossum0b650d72002-08-19 16:29:58 +0000366 __slots__ = ['_hashcode']
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000367
368 # BaseSet + hashing
369
Guido van Rossum9f872932002-08-21 03:20:44 +0000370 def __init__(self, iterable=None):
371 """Construct an immutable set from an optional iterable."""
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000372 self._hashcode = None
Guido van Rossum9f872932002-08-21 03:20:44 +0000373 self._data = {}
374 if iterable is not None:
375 self._update(iterable)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000376
377 def __hash__(self):
378 if self._hashcode is None:
379 self._hashcode = self._compute_hash()
380 return self._hashcode
381
Jeremy Hyltoncd58b8f2002-11-13 19:34:26 +0000382 def __getstate__(self):
383 return self._data, self._hashcode
384
385 def __setstate__(self, state):
386 self._data, self._hashcode = state
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000387
388class Set(BaseSet):
389 """ Mutable set class."""
390
391 __slots__ = []
392
393 # BaseSet + operations requiring mutability; no hashing
394
Guido van Rossum9f872932002-08-21 03:20:44 +0000395 def __init__(self, iterable=None):
396 """Construct a set from an optional iterable."""
397 self._data = {}
398 if iterable is not None:
399 self._update(iterable)
400
Jeremy Hyltoncd58b8f2002-11-13 19:34:26 +0000401 def __getstate__(self):
402 # getstate's results are ignored if it is not
403 return self._data,
404
405 def __setstate__(self, data):
406 self._data, = data
407
Guido van Rossum9f872932002-08-21 03:20:44 +0000408 def __hash__(self):
409 """A Set cannot be hashed."""
410 # We inherit object.__hash__, so we must deny this explicitly
411 raise TypeError, "Can't hash a Set, only an ImmutableSet."
Guido van Rossum5033b362002-08-20 21:38:37 +0000412
Tim Peters4a2f91e2002-08-25 18:59:04 +0000413 # In-place union, intersection, differences.
414 # Subtle: The xyz_update() functions deliberately return None,
415 # as do all mutating operations on built-in container types.
416 # The __xyz__ spellings have to return self, though.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000417
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000418 def __ior__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000419 """Update a set with the union of itself and another."""
420 self._binary_sanity_check(other)
421 self._data.update(other._data)
422 return self
423
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000424 def union_update(self, other):
425 """Update a set with the union of itself and another."""
426 self |= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000427
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000428 def __iand__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000429 """Update a set with the intersection of itself and another."""
430 self._binary_sanity_check(other)
Tim Peters454602f2002-08-26 00:44:07 +0000431 self._data = (self & other)._data
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000432 return self
433
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000434 def intersection_update(self, other):
435 """Update a set with the intersection of itself and another."""
436 self &= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000437
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000438 def __ixor__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000439 """Update a set with the symmetric difference of itself and another."""
440 self._binary_sanity_check(other)
441 data = self._data
442 value = True
443 for elt in other:
444 if elt in data:
445 del data[elt]
446 else:
447 data[elt] = value
448 return self
449
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000450 def symmetric_difference_update(self, other):
451 """Update a set with the symmetric difference of itself and another."""
452 self ^= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000453
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000454 def __isub__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000455 """Remove all elements of another set from this set."""
456 self._binary_sanity_check(other)
457 data = self._data
Raymond Hettinger1ecfb732003-02-02 16:07:53 +0000458 for elt in ifilter(data.has_key, other):
459 del data[elt]
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000460 return self
461
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000462 def difference_update(self, other):
463 """Remove all elements of another set from this set."""
464 self -= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000465
466 # Python dict-like mass mutations: update, clear
467
468 def update(self, iterable):
469 """Add all values from an iterable (such as a list or file)."""
Guido van Rossum9f872932002-08-21 03:20:44 +0000470 self._update(iterable)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000471
472 def clear(self):
473 """Remove all elements from this set."""
474 self._data.clear()
475
476 # Single-element mutations: add, remove, discard
477
478 def add(self, element):
479 """Add an element to a set.
480
481 This has no effect if the element is already present.
482 """
483 try:
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000484 self._data[element] = True
485 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000486 transform = getattr(element, "__as_immutable__", None)
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000487 if transform is None:
488 raise # re-raise the TypeError exception we caught
489 self._data[transform()] = True
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000490
491 def remove(self, element):
492 """Remove an element from a set; it must be a member.
493
494 If the element is not a member, raise a KeyError.
495 """
496 try:
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000497 del self._data[element]
498 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000499 transform = getattr(element, "__as_temporarily_immutable__", None)
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000500 if transform is None:
501 raise # re-raise the TypeError exception we caught
502 del self._data[transform()]
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000503
504 def discard(self, element):
505 """Remove an element from a set if it is a member.
506
507 If the element is not a member, do nothing.
508 """
509 try:
Guido van Rossume399d082002-08-23 14:45:02 +0000510 self.remove(element)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000511 except KeyError:
512 pass
513
Guido van Rossumc9196bc2002-08-20 21:51:59 +0000514 def pop(self):
Tim Peters53506be2002-08-23 20:36:58 +0000515 """Remove and return an arbitrary set element."""
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000516 return self._data.popitem()[0]
517
Raymond Hettinger2835e372003-02-14 03:42:11 +0000518 def __as_immutable__(self):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000519 # Return a copy of self as an immutable set
520 return ImmutableSet(self)
521
Raymond Hettinger2835e372003-02-14 03:42:11 +0000522 def __as_temporarily_immutable__(self):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000523 # Return self wrapped in a temporarily immutable set
524 return _TemporarilyImmutableSet(self)
525
526
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000527class _TemporarilyImmutableSet(BaseSet):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000528 # Wrap a mutable set as if it was temporarily immutable.
529 # This only supplies hashing and equality comparisons.
530
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000531 def __init__(self, set):
532 self._set = set
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000533 self._data = set._data # Needed by ImmutableSet.__eq__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000534
535 def __hash__(self):
Raymond Hettingerd5018512002-08-24 04:47:42 +0000536 return self._set._compute_hash()