blob: 32eb0aa6f6bca3ebd41954f1b8d2dc4d37d55bd5 [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
Raymond Hettingeree562fc2003-08-15 21:17:04 +000057from __future__ import generators
58try:
59 from itertools import ifilter, ifilterfalse
60except ImportError:
61 # Code to make the module run under Py2.2
62 def ifilter(predicate, iterable):
63 if predicate is None:
64 def predicate(x):
65 return x
66 for x in iterable:
67 if predicate(x):
68 yield x
69 def ifilterfalse(predicate, iterable):
70 if predicate is None:
71 def predicate(x):
72 return x
73 for x in iterable:
74 if not predicate(x):
75 yield x
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000076
77__all__ = ['BaseSet', 'Set', 'ImmutableSet']
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000078
79class BaseSet(object):
80 """Common base class for mutable and immutable sets."""
81
82 __slots__ = ['_data']
83
84 # Constructor
85
Guido van Rossum5033b362002-08-20 21:38:37 +000086 def __init__(self):
87 """This is an abstract class."""
88 # Don't call this from a concrete subclass!
89 if self.__class__ is BaseSet:
Guido van Rossum9f872932002-08-21 03:20:44 +000090 raise TypeError, ("BaseSet is an abstract class. "
91 "Use Set or ImmutableSet.")
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000092
93 # Standard protocols: __len__, __repr__, __str__, __iter__
94
95 def __len__(self):
96 """Return the number of elements of a set."""
97 return len(self._data)
98
99 def __repr__(self):
100 """Return string representation of a set.
101
102 This looks like 'Set([<list of elements>])'.
103 """
104 return self._repr()
105
106 # __str__ is the same as __repr__
107 __str__ = __repr__
108
109 def _repr(self, sorted=False):
110 elements = self._data.keys()
111 if sorted:
112 elements.sort()
113 return '%s(%r)' % (self.__class__.__name__, elements)
114
115 def __iter__(self):
116 """Return an iterator over the elements or a set.
117
118 This is the keys iterator for the underlying dict.
119 """
120 return self._data.iterkeys()
121
Tim Peters44f14b02003-03-02 00:19:49 +0000122 # Three-way comparison is not supported. However, because __eq__ is
123 # tried before __cmp__, if Set x == Set y, x.__eq__(y) returns True and
124 # then cmp(x, y) returns 0 (Python doesn't actually call __cmp__ in this
125 # case).
Guido van Rossum50e92232003-01-14 16:45:04 +0000126
127 def __cmp__(self, other):
128 raise TypeError, "can't compare sets using cmp()"
129
Tim Peters44f14b02003-03-02 00:19:49 +0000130 # Equality comparisons using the underlying dicts. Mixed-type comparisons
131 # are allowed here, where Set == z for non-Set z always returns False,
132 # and Set != z always True. This allows expressions like "x in y" to
133 # give the expected result when y is a sequence of mixed types, not
134 # raising a pointless TypeError just because y contains a Set, or x is
135 # a Set and y contain's a non-set ("in" invokes only __eq__).
136 # Subtle: it would be nicer if __eq__ and __ne__ could return
137 # NotImplemented instead of True or False. Then the other comparand
138 # would get a chance to determine the result, and if the other comparand
139 # also returned NotImplemented then it would fall back to object address
140 # comparison (which would always return False for __eq__ and always
141 # True for __ne__). However, that doesn't work, because this type
142 # *also* implements __cmp__: if, e.g., __eq__ returns NotImplemented,
143 # Python tries __cmp__ next, and the __cmp__ here then raises TypeError.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000144
145 def __eq__(self, other):
Tim Peters44f14b02003-03-02 00:19:49 +0000146 if isinstance(other, BaseSet):
147 return self._data == other._data
148 else:
149 return False
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000150
151 def __ne__(self, other):
Tim Peters44f14b02003-03-02 00:19:49 +0000152 if isinstance(other, BaseSet):
153 return self._data != other._data
154 else:
155 return True
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000156
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000157 # Copying operations
158
159 def copy(self):
160 """Return a shallow copy of a set."""
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000161 result = self.__class__()
Raymond Hettingerd9c91512002-08-21 13:20:51 +0000162 result._data.update(self._data)
163 return result
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000164
165 __copy__ = copy # For the copy module
166
167 def __deepcopy__(self, memo):
168 """Return a deep copy of a set; used by copy module."""
169 # This pre-creates the result and inserts it in the memo
170 # early, in case the deep copy recurses into another reference
171 # to this same set. A set can't be an element of itself, but
172 # it can certainly contain an object that has a reference to
173 # itself.
174 from copy import deepcopy
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000175 result = self.__class__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000176 memo[id(self)] = result
177 data = result._data
178 value = True
179 for elt in self:
180 data[deepcopy(elt, memo)] = value
181 return result
182
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000183 # Standard set operations: union, intersection, both differences.
184 # Each has an operator version (e.g. __or__, invoked with |) and a
185 # method version (e.g. union).
Tim Peters4924db12002-08-25 17:10:17 +0000186 # Subtle: Each pair requires distinct code so that the outcome is
187 # correct when the type of other isn't suitable. For example, if
188 # we did "union = __or__" instead, then Set().union(3) would return
189 # NotImplemented instead of raising TypeError (albeit that *why* it
190 # raises TypeError as-is is also a bit subtle).
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000191
192 def __or__(self, other):
193 """Return the union of two sets as a new set.
194
195 (I.e. all elements that are in either set.)
196 """
197 if not isinstance(other, BaseSet):
198 return NotImplemented
Tim Peters37faed22002-08-25 19:21:27 +0000199 result = self.__class__()
200 result._data = self._data.copy()
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000201 result._data.update(other._data)
202 return result
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000203
204 def union(self, other):
205 """Return the union of two sets as a new set.
206
207 (I.e. all elements that are in either set.)
208 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000209 return self | other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000210
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000211 def __and__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000212 """Return the intersection of two sets as a new set.
213
214 (I.e. all elements that are in both sets.)
215 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000216 if not isinstance(other, BaseSet):
217 return NotImplemented
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000218 if len(self) <= len(other):
219 little, big = self, other
220 else:
221 little, big = other, self
Raymond Hettingera3a53182003-02-02 14:27:19 +0000222 common = ifilter(big._data.has_key, little)
Tim Petersd33e6be2002-08-25 19:12:45 +0000223 return self.__class__(common)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000224
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000225 def intersection(self, other):
226 """Return the intersection of two sets as a new set.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000227
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000228 (I.e. all elements that are in both sets.)
229 """
230 return self & other
231
232 def __xor__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000233 """Return the symmetric difference of two sets as a new set.
234
235 (I.e. all elements that are in exactly one of the sets.)
236 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000237 if not isinstance(other, BaseSet):
238 return NotImplemented
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000239 result = self.__class__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000240 data = result._data
241 value = True
Tim Peters334b4a52002-08-25 19:47:54 +0000242 selfdata = self._data
243 otherdata = other._data
Raymond Hettinger60eca932003-02-09 06:40:58 +0000244 for elt in ifilterfalse(otherdata.has_key, selfdata):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000245 data[elt] = value
Raymond Hettinger60eca932003-02-09 06:40:58 +0000246 for elt in ifilterfalse(selfdata.has_key, otherdata):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000247 data[elt] = value
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000248 return result
249
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000250 def symmetric_difference(self, other):
251 """Return the symmetric difference of two sets as a new set.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000252
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000253 (I.e. all elements that are in exactly one of the sets.)
254 """
255 return self ^ other
256
257 def __sub__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000258 """Return the difference of two sets as a new Set.
259
260 (I.e. all elements that are in this set and not in the other.)
261 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000262 if not isinstance(other, BaseSet):
263 return NotImplemented
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000264 result = self.__class__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000265 data = result._data
266 value = True
Raymond Hettinger60eca932003-02-09 06:40:58 +0000267 for elt in ifilterfalse(other._data.has_key, self):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000268 data[elt] = value
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000269 return result
270
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000271 def difference(self, other):
272 """Return the difference of two sets as a new Set.
273
274 (I.e. all elements that are in this set and not in the other.)
275 """
276 return self - other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000277
278 # Membership test
279
280 def __contains__(self, element):
281 """Report whether an element is a member of a set.
282
283 (Called in response to the expression `element in self'.)
284 """
285 try:
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000286 return element in self._data
287 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000288 transform = getattr(element, "__as_temporarily_immutable__", None)
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000289 if transform is None:
290 raise # re-raise the TypeError exception we caught
291 return transform() in self._data
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000292
293 # Subset and superset test
294
295 def issubset(self, other):
296 """Report whether another set contains this set."""
297 self._binary_sanity_check(other)
Raymond Hettinger43db0d62002-08-21 02:22:08 +0000298 if len(self) > len(other): # Fast check for obvious cases
299 return False
Raymond Hettinger60eca932003-02-09 06:40:58 +0000300 for elt in ifilterfalse(other._data.has_key, self):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000301 return False
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000302 return True
303
304 def issuperset(self, other):
305 """Report whether this set contains another set."""
306 self._binary_sanity_check(other)
Raymond Hettinger43db0d62002-08-21 02:22:08 +0000307 if len(self) < len(other): # Fast check for obvious cases
308 return False
Raymond Hettinger60eca932003-02-09 06:40:58 +0000309 for elt in ifilterfalse(self._data.has_key, other):
Tim Peters322d5532003-02-04 00:38:20 +0000310 return False
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000311 return True
312
Tim Petersea76c982002-08-25 18:43:10 +0000313 # Inequality comparisons using the is-subset relation.
314 __le__ = issubset
315 __ge__ = issuperset
316
317 def __lt__(self, other):
318 self._binary_sanity_check(other)
319 return len(self) < len(other) and self.issubset(other)
320
321 def __gt__(self, other):
322 self._binary_sanity_check(other)
323 return len(self) > len(other) and self.issuperset(other)
324
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000325 # Assorted helpers
326
327 def _binary_sanity_check(self, other):
328 # Check that the other argument to a binary operation is also
329 # a set, raising a TypeError otherwise.
330 if not isinstance(other, BaseSet):
331 raise TypeError, "Binary operation only permitted between sets"
332
333 def _compute_hash(self):
334 # Calculate hash code for a set by xor'ing the hash codes of
Tim Petersd06d0302002-08-23 20:06:42 +0000335 # the elements. This ensures that the hash code does not depend
336 # on the order in which elements are added to the set. This is
337 # not called __hash__ because a BaseSet should not be hashable;
338 # only an ImmutableSet is hashable.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000339 result = 0
340 for elt in self:
341 result ^= hash(elt)
342 return result
343
Guido van Rossum9f872932002-08-21 03:20:44 +0000344 def _update(self, iterable):
345 # The main loop for update() and the subclass __init__() methods.
Guido van Rossum9f872932002-08-21 03:20:44 +0000346 data = self._data
Raymond Hettinger1a8d1932002-08-29 15:13:50 +0000347
348 # Use the fast update() method when a dictionary is available.
349 if isinstance(iterable, BaseSet):
350 data.update(iterable._data)
351 return
Raymond Hettinger1a8d1932002-08-29 15:13:50 +0000352
Tim Peters0ec1ddc2002-11-08 05:26:52 +0000353 value = True
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000354
355 if type(iterable) in (list, tuple, xrange):
356 # Optimized: we know that __iter__() and next() can't
357 # raise TypeError, so we can move 'try:' out of the loop.
358 it = iter(iterable)
359 while True:
360 try:
361 for element in it:
362 data[element] = value
363 return
364 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000365 transform = getattr(element, "__as_immutable__", None)
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000366 if transform is None:
367 raise # re-raise the TypeError exception we caught
368 data[transform()] = value
369 else:
370 # Safe: only catch TypeError where intended
371 for element in iterable:
372 try:
Raymond Hettinger80d21af2002-08-21 04:12:03 +0000373 data[element] = value
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000374 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000375 transform = getattr(element, "__as_immutable__", None)
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000376 if transform is None:
377 raise # re-raise the TypeError exception we caught
378 data[transform()] = value
Guido van Rossum9f872932002-08-21 03:20:44 +0000379
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000380
381class ImmutableSet(BaseSet):
382 """Immutable set class."""
383
Guido van Rossum0b650d72002-08-19 16:29:58 +0000384 __slots__ = ['_hashcode']
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000385
386 # BaseSet + hashing
387
Guido van Rossum9f872932002-08-21 03:20:44 +0000388 def __init__(self, iterable=None):
389 """Construct an immutable set from an optional iterable."""
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000390 self._hashcode = None
Guido van Rossum9f872932002-08-21 03:20:44 +0000391 self._data = {}
392 if iterable is not None:
393 self._update(iterable)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000394
395 def __hash__(self):
396 if self._hashcode is None:
397 self._hashcode = self._compute_hash()
398 return self._hashcode
399
Jeremy Hyltoncd58b8f2002-11-13 19:34:26 +0000400 def __getstate__(self):
401 return self._data, self._hashcode
402
403 def __setstate__(self, state):
404 self._data, self._hashcode = state
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000405
406class Set(BaseSet):
407 """ Mutable set class."""
408
409 __slots__ = []
410
411 # BaseSet + operations requiring mutability; no hashing
412
Guido van Rossum9f872932002-08-21 03:20:44 +0000413 def __init__(self, iterable=None):
414 """Construct a set from an optional iterable."""
415 self._data = {}
416 if iterable is not None:
417 self._update(iterable)
418
Jeremy Hyltoncd58b8f2002-11-13 19:34:26 +0000419 def __getstate__(self):
420 # getstate's results are ignored if it is not
421 return self._data,
422
423 def __setstate__(self, data):
424 self._data, = data
425
Guido van Rossum9f872932002-08-21 03:20:44 +0000426 def __hash__(self):
427 """A Set cannot be hashed."""
428 # We inherit object.__hash__, so we must deny this explicitly
429 raise TypeError, "Can't hash a Set, only an ImmutableSet."
Guido van Rossum5033b362002-08-20 21:38:37 +0000430
Tim Peters4a2f91e2002-08-25 18:59:04 +0000431 # In-place union, intersection, differences.
432 # Subtle: The xyz_update() functions deliberately return None,
433 # as do all mutating operations on built-in container types.
434 # The __xyz__ spellings have to return self, though.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000435
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000436 def __ior__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000437 """Update a set with the union of itself and another."""
438 self._binary_sanity_check(other)
439 self._data.update(other._data)
440 return self
441
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000442 def union_update(self, other):
443 """Update a set with the union of itself and another."""
444 self |= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000445
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000446 def __iand__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000447 """Update a set with the intersection of itself and another."""
448 self._binary_sanity_check(other)
Tim Peters454602f2002-08-26 00:44:07 +0000449 self._data = (self & other)._data
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000450 return self
451
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000452 def intersection_update(self, other):
453 """Update a set with the intersection of itself and another."""
454 self &= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000455
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000456 def __ixor__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000457 """Update a set with the symmetric difference of itself and another."""
458 self._binary_sanity_check(other)
459 data = self._data
460 value = True
461 for elt in other:
462 if elt in data:
463 del data[elt]
464 else:
465 data[elt] = value
466 return self
467
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000468 def symmetric_difference_update(self, other):
469 """Update a set with the symmetric difference of itself and another."""
470 self ^= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000471
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000472 def __isub__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000473 """Remove all elements of another set from this set."""
474 self._binary_sanity_check(other)
475 data = self._data
Raymond Hettinger1ecfb732003-02-02 16:07:53 +0000476 for elt in ifilter(data.has_key, other):
477 del data[elt]
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000478 return self
479
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000480 def difference_update(self, other):
481 """Remove all elements of another set from this set."""
482 self -= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000483
484 # Python dict-like mass mutations: update, clear
485
486 def update(self, iterable):
487 """Add all values from an iterable (such as a list or file)."""
Guido van Rossum9f872932002-08-21 03:20:44 +0000488 self._update(iterable)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000489
490 def clear(self):
491 """Remove all elements from this set."""
492 self._data.clear()
493
494 # Single-element mutations: add, remove, discard
495
496 def add(self, element):
497 """Add an element to a set.
498
499 This has no effect if the element is already present.
500 """
501 try:
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000502 self._data[element] = True
503 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000504 transform = getattr(element, "__as_immutable__", None)
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000505 if transform is None:
506 raise # re-raise the TypeError exception we caught
507 self._data[transform()] = True
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000508
509 def remove(self, element):
510 """Remove an element from a set; it must be a member.
511
512 If the element is not a member, raise a KeyError.
513 """
514 try:
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000515 del self._data[element]
516 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000517 transform = getattr(element, "__as_temporarily_immutable__", None)
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000518 if transform is None:
519 raise # re-raise the TypeError exception we caught
520 del self._data[transform()]
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000521
522 def discard(self, element):
523 """Remove an element from a set if it is a member.
524
525 If the element is not a member, do nothing.
526 """
527 try:
Guido van Rossume399d082002-08-23 14:45:02 +0000528 self.remove(element)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000529 except KeyError:
530 pass
531
Guido van Rossumc9196bc2002-08-20 21:51:59 +0000532 def pop(self):
Tim Peters53506be2002-08-23 20:36:58 +0000533 """Remove and return an arbitrary set element."""
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000534 return self._data.popitem()[0]
535
Raymond Hettinger2835e372003-02-14 03:42:11 +0000536 def __as_immutable__(self):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000537 # Return a copy of self as an immutable set
538 return ImmutableSet(self)
539
Raymond Hettinger2835e372003-02-14 03:42:11 +0000540 def __as_temporarily_immutable__(self):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000541 # Return self wrapped in a temporarily immutable set
542 return _TemporarilyImmutableSet(self)
543
544
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000545class _TemporarilyImmutableSet(BaseSet):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000546 # Wrap a mutable set as if it was temporarily immutable.
547 # This only supplies hashing and equality comparisons.
548
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000549 def __init__(self, set):
550 self._set = set
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000551 self._data = set._data # Needed by ImmutableSet.__eq__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000552
553 def __hash__(self):
Raymond Hettingerd5018512002-08-24 04:47:42 +0000554 return self._set._compute_hash()