blob: e6a509f1fa2d4574baf45121d1f8e83fdac6930b [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
28_TemporarilyImmutableSet -- Not a subclass of BaseSet: just a wrapper
29 around a Set, hashable, giving the same hash value as the
30 immutable set equivalent would have. Do not use this class
31 directly.
32
33Only hashable objects can be added to a Set. In particular, you cannot
34really add a Set as an element to another Set; if you try, what is
Raymond Hettingerede3a0d2002-08-20 23:34:01 +000035actually added is an ImmutableSet built from it (it compares equal to
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000036the one you tried adding).
37
38When you ask if `x in y' where x is a Set and y is a Set or
39ImmutableSet, x is wrapped into a _TemporarilyImmutableSet z, and
40what's tested is actually `z in y'.
41
42"""
43
44# Code history:
45#
46# - Greg V. Wilson wrote the first version, using a different approach
47# to the mutable/immutable problem, and inheriting from dict.
48#
49# - Alex Martelli modified Greg's version to implement the current
50# Set/ImmutableSet approach, and make the data an attribute.
51#
52# - Guido van Rossum rewrote much of the code, made some API changes,
53# and cleaned up the docstrings.
Guido van Rossum26588222002-08-21 02:44:04 +000054#
Guido van Rossum9f872932002-08-21 03:20:44 +000055# - Raymond Hettinger added a number of speedups and other
Guido van Rossumdc61cdf2002-08-22 17:23:33 +000056# improvements.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000057
58
59__all__ = ['BaseSet', 'Set', 'ImmutableSet']
Raymond Hettinger60eca932003-02-09 06:40:58 +000060from itertools import ifilter, ifilterfalse
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000061
62class BaseSet(object):
63 """Common base class for mutable and immutable sets."""
64
65 __slots__ = ['_data']
66
67 # Constructor
68
Guido van Rossum5033b362002-08-20 21:38:37 +000069 def __init__(self):
70 """This is an abstract class."""
71 # Don't call this from a concrete subclass!
72 if self.__class__ is BaseSet:
Guido van Rossum9f872932002-08-21 03:20:44 +000073 raise TypeError, ("BaseSet is an abstract class. "
74 "Use Set or ImmutableSet.")
Guido van Rossumd6cf3af2002-08-19 16:19:15 +000075
76 # Standard protocols: __len__, __repr__, __str__, __iter__
77
78 def __len__(self):
79 """Return the number of elements of a set."""
80 return len(self._data)
81
82 def __repr__(self):
83 """Return string representation of a set.
84
85 This looks like 'Set([<list of elements>])'.
86 """
87 return self._repr()
88
89 # __str__ is the same as __repr__
90 __str__ = __repr__
91
92 def _repr(self, sorted=False):
93 elements = self._data.keys()
94 if sorted:
95 elements.sort()
96 return '%s(%r)' % (self.__class__.__name__, elements)
97
98 def __iter__(self):
99 """Return an iterator over the elements or a set.
100
101 This is the keys iterator for the underlying dict.
102 """
103 return self._data.iterkeys()
104
Tim Peters44f14b02003-03-02 00:19:49 +0000105 # Three-way comparison is not supported. However, because __eq__ is
106 # tried before __cmp__, if Set x == Set y, x.__eq__(y) returns True and
107 # then cmp(x, y) returns 0 (Python doesn't actually call __cmp__ in this
108 # case).
Guido van Rossum50e92232003-01-14 16:45:04 +0000109
110 def __cmp__(self, other):
111 raise TypeError, "can't compare sets using cmp()"
112
Tim Peters44f14b02003-03-02 00:19:49 +0000113 # Equality comparisons using the underlying dicts. Mixed-type comparisons
114 # are allowed here, where Set == z for non-Set z always returns False,
115 # and Set != z always True. This allows expressions like "x in y" to
116 # give the expected result when y is a sequence of mixed types, not
117 # raising a pointless TypeError just because y contains a Set, or x is
118 # a Set and y contain's a non-set ("in" invokes only __eq__).
119 # Subtle: it would be nicer if __eq__ and __ne__ could return
120 # NotImplemented instead of True or False. Then the other comparand
121 # would get a chance to determine the result, and if the other comparand
122 # also returned NotImplemented then it would fall back to object address
123 # comparison (which would always return False for __eq__ and always
124 # True for __ne__). However, that doesn't work, because this type
125 # *also* implements __cmp__: if, e.g., __eq__ returns NotImplemented,
126 # Python tries __cmp__ next, and the __cmp__ here then raises TypeError.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000127
128 def __eq__(self, other):
Tim Peters44f14b02003-03-02 00:19:49 +0000129 if isinstance(other, BaseSet):
130 return self._data == other._data
131 else:
132 return False
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000133
134 def __ne__(self, other):
Tim Peters44f14b02003-03-02 00:19:49 +0000135 if isinstance(other, BaseSet):
136 return self._data != other._data
137 else:
138 return True
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000139
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000140 # Copying operations
141
142 def copy(self):
143 """Return a shallow copy of a set."""
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000144 result = self.__class__()
Raymond Hettingerd9c91512002-08-21 13:20:51 +0000145 result._data.update(self._data)
146 return result
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000147
148 __copy__ = copy # For the copy module
149
150 def __deepcopy__(self, memo):
151 """Return a deep copy of a set; used by copy module."""
152 # This pre-creates the result and inserts it in the memo
153 # early, in case the deep copy recurses into another reference
154 # to this same set. A set can't be an element of itself, but
155 # it can certainly contain an object that has a reference to
156 # itself.
157 from copy import deepcopy
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000158 result = self.__class__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000159 memo[id(self)] = result
160 data = result._data
161 value = True
162 for elt in self:
163 data[deepcopy(elt, memo)] = value
164 return result
165
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000166 # Standard set operations: union, intersection, both differences.
167 # Each has an operator version (e.g. __or__, invoked with |) and a
168 # method version (e.g. union).
Tim Peters4924db12002-08-25 17:10:17 +0000169 # Subtle: Each pair requires distinct code so that the outcome is
170 # correct when the type of other isn't suitable. For example, if
171 # we did "union = __or__" instead, then Set().union(3) would return
172 # NotImplemented instead of raising TypeError (albeit that *why* it
173 # raises TypeError as-is is also a bit subtle).
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000174
175 def __or__(self, other):
176 """Return the union of two sets as a new set.
177
178 (I.e. all elements that are in either set.)
179 """
180 if not isinstance(other, BaseSet):
181 return NotImplemented
Tim Peters37faed22002-08-25 19:21:27 +0000182 result = self.__class__()
183 result._data = self._data.copy()
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000184 result._data.update(other._data)
185 return result
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000186
187 def union(self, other):
188 """Return the union of two sets as a new set.
189
190 (I.e. all elements that are in either set.)
191 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000192 return self | other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000193
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000194 def __and__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000195 """Return the intersection of two sets as a new set.
196
197 (I.e. all elements that are in both sets.)
198 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000199 if not isinstance(other, BaseSet):
200 return NotImplemented
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000201 if len(self) <= len(other):
202 little, big = self, other
203 else:
204 little, big = other, self
Raymond Hettingera3a53182003-02-02 14:27:19 +0000205 common = ifilter(big._data.has_key, little)
Tim Petersd33e6be2002-08-25 19:12:45 +0000206 return self.__class__(common)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000207
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000208 def intersection(self, other):
209 """Return the intersection of two sets as a new set.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000210
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000211 (I.e. all elements that are in both sets.)
212 """
213 return self & other
214
215 def __xor__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000216 """Return the symmetric difference of two sets as a new set.
217
218 (I.e. all elements that are in exactly one of the sets.)
219 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000220 if not isinstance(other, BaseSet):
221 return NotImplemented
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000222 result = self.__class__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000223 data = result._data
224 value = True
Tim Peters334b4a52002-08-25 19:47:54 +0000225 selfdata = self._data
226 otherdata = other._data
Raymond Hettinger60eca932003-02-09 06:40:58 +0000227 for elt in ifilterfalse(otherdata.has_key, selfdata):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000228 data[elt] = value
Raymond Hettinger60eca932003-02-09 06:40:58 +0000229 for elt in ifilterfalse(selfdata.has_key, otherdata):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000230 data[elt] = value
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000231 return result
232
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000233 def symmetric_difference(self, other):
234 """Return the symmetric difference of two sets as a new set.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000235
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000236 (I.e. all elements that are in exactly one of the sets.)
237 """
238 return self ^ other
239
240 def __sub__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000241 """Return the difference of two sets as a new Set.
242
243 (I.e. all elements that are in this set and not in the other.)
244 """
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000245 if not isinstance(other, BaseSet):
246 return NotImplemented
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000247 result = self.__class__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000248 data = result._data
249 value = True
Raymond Hettinger60eca932003-02-09 06:40:58 +0000250 for elt in ifilterfalse(other._data.has_key, self):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000251 data[elt] = value
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000252 return result
253
Guido van Rossumdc61cdf2002-08-22 17:23:33 +0000254 def difference(self, other):
255 """Return the difference of two sets as a new Set.
256
257 (I.e. all elements that are in this set and not in the other.)
258 """
259 return self - other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000260
261 # Membership test
262
263 def __contains__(self, element):
264 """Report whether an element is a member of a set.
265
266 (Called in response to the expression `element in self'.)
267 """
268 try:
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000269 return element in self._data
270 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000271 transform = getattr(element, "__as_temporarily_immutable__", None)
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000272 if transform is None:
273 raise # re-raise the TypeError exception we caught
274 return transform() in self._data
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000275
276 # Subset and superset test
277
278 def issubset(self, other):
279 """Report whether another set contains this set."""
280 self._binary_sanity_check(other)
Raymond Hettinger43db0d62002-08-21 02:22:08 +0000281 if len(self) > len(other): # Fast check for obvious cases
282 return False
Raymond Hettinger60eca932003-02-09 06:40:58 +0000283 for elt in ifilterfalse(other._data.has_key, self):
Raymond Hettingera3a53182003-02-02 14:27:19 +0000284 return False
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000285 return True
286
287 def issuperset(self, other):
288 """Report whether this set contains another set."""
289 self._binary_sanity_check(other)
Raymond Hettinger43db0d62002-08-21 02:22:08 +0000290 if len(self) < len(other): # Fast check for obvious cases
291 return False
Raymond Hettinger60eca932003-02-09 06:40:58 +0000292 for elt in ifilterfalse(self._data.has_key, other):
Tim Peters322d5532003-02-04 00:38:20 +0000293 return False
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000294 return True
295
Tim Petersea76c982002-08-25 18:43:10 +0000296 # Inequality comparisons using the is-subset relation.
297 __le__ = issubset
298 __ge__ = issuperset
299
300 def __lt__(self, other):
301 self._binary_sanity_check(other)
302 return len(self) < len(other) and self.issubset(other)
303
304 def __gt__(self, other):
305 self._binary_sanity_check(other)
306 return len(self) > len(other) and self.issuperset(other)
307
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000308 # Assorted helpers
309
310 def _binary_sanity_check(self, other):
311 # Check that the other argument to a binary operation is also
312 # a set, raising a TypeError otherwise.
313 if not isinstance(other, BaseSet):
314 raise TypeError, "Binary operation only permitted between sets"
315
316 def _compute_hash(self):
317 # Calculate hash code for a set by xor'ing the hash codes of
Tim Petersd06d0302002-08-23 20:06:42 +0000318 # the elements. This ensures that the hash code does not depend
319 # on the order in which elements are added to the set. This is
320 # not called __hash__ because a BaseSet should not be hashable;
321 # only an ImmutableSet is hashable.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000322 result = 0
323 for elt in self:
324 result ^= hash(elt)
325 return result
326
Guido van Rossum9f872932002-08-21 03:20:44 +0000327 def _update(self, iterable):
328 # The main loop for update() and the subclass __init__() methods.
Guido van Rossum9f872932002-08-21 03:20:44 +0000329 data = self._data
Raymond Hettinger1a8d1932002-08-29 15:13:50 +0000330
331 # Use the fast update() method when a dictionary is available.
332 if isinstance(iterable, BaseSet):
333 data.update(iterable._data)
334 return
Raymond Hettinger1a8d1932002-08-29 15:13:50 +0000335
Tim Peters0ec1ddc2002-11-08 05:26:52 +0000336 value = True
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000337
338 if type(iterable) in (list, tuple, xrange):
339 # Optimized: we know that __iter__() and next() can't
340 # raise TypeError, so we can move 'try:' out of the loop.
341 it = iter(iterable)
342 while True:
343 try:
344 for element in it:
345 data[element] = value
346 return
347 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000348 transform = getattr(element, "__as_immutable__", None)
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000349 if transform is None:
350 raise # re-raise the TypeError exception we caught
351 data[transform()] = value
352 else:
353 # Safe: only catch TypeError where intended
354 for element in iterable:
355 try:
Raymond Hettinger80d21af2002-08-21 04:12:03 +0000356 data[element] = value
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000357 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000358 transform = getattr(element, "__as_immutable__", None)
Guido van Rossum7cd83ca2002-11-08 17:03:36 +0000359 if transform is None:
360 raise # re-raise the TypeError exception we caught
361 data[transform()] = value
Guido van Rossum9f872932002-08-21 03:20:44 +0000362
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000363
364class ImmutableSet(BaseSet):
365 """Immutable set class."""
366
Guido van Rossum0b650d72002-08-19 16:29:58 +0000367 __slots__ = ['_hashcode']
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000368
369 # BaseSet + hashing
370
Guido van Rossum9f872932002-08-21 03:20:44 +0000371 def __init__(self, iterable=None):
372 """Construct an immutable set from an optional iterable."""
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000373 self._hashcode = None
Guido van Rossum9f872932002-08-21 03:20:44 +0000374 self._data = {}
375 if iterable is not None:
376 self._update(iterable)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000377
378 def __hash__(self):
379 if self._hashcode is None:
380 self._hashcode = self._compute_hash()
381 return self._hashcode
382
Jeremy Hyltoncd58b8f2002-11-13 19:34:26 +0000383 def __getstate__(self):
384 return self._data, self._hashcode
385
386 def __setstate__(self, state):
387 self._data, self._hashcode = state
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000388
389class Set(BaseSet):
390 """ Mutable set class."""
391
392 __slots__ = []
393
394 # BaseSet + operations requiring mutability; no hashing
395
Guido van Rossum9f872932002-08-21 03:20:44 +0000396 def __init__(self, iterable=None):
397 """Construct a set from an optional iterable."""
398 self._data = {}
399 if iterable is not None:
400 self._update(iterable)
401
Jeremy Hyltoncd58b8f2002-11-13 19:34:26 +0000402 def __getstate__(self):
403 # getstate's results are ignored if it is not
404 return self._data,
405
406 def __setstate__(self, data):
407 self._data, = data
408
Guido van Rossum9f872932002-08-21 03:20:44 +0000409 def __hash__(self):
410 """A Set cannot be hashed."""
411 # We inherit object.__hash__, so we must deny this explicitly
412 raise TypeError, "Can't hash a Set, only an ImmutableSet."
Guido van Rossum5033b362002-08-20 21:38:37 +0000413
Tim Peters4a2f91e2002-08-25 18:59:04 +0000414 # In-place union, intersection, differences.
415 # Subtle: The xyz_update() functions deliberately return None,
416 # as do all mutating operations on built-in container types.
417 # The __xyz__ spellings have to return self, though.
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000418
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000419 def __ior__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000420 """Update a set with the union of itself and another."""
421 self._binary_sanity_check(other)
422 self._data.update(other._data)
423 return self
424
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000425 def union_update(self, other):
426 """Update a set with the union of itself and another."""
427 self |= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000428
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000429 def __iand__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000430 """Update a set with the intersection of itself and another."""
431 self._binary_sanity_check(other)
Tim Peters454602f2002-08-26 00:44:07 +0000432 self._data = (self & other)._data
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000433 return self
434
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000435 def intersection_update(self, other):
436 """Update a set with the intersection of itself and another."""
437 self &= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000438
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000439 def __ixor__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000440 """Update a set with the symmetric difference of itself and another."""
441 self._binary_sanity_check(other)
442 data = self._data
443 value = True
444 for elt in other:
445 if elt in data:
446 del data[elt]
447 else:
448 data[elt] = value
449 return self
450
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000451 def symmetric_difference_update(self, other):
452 """Update a set with the symmetric difference of itself and another."""
453 self ^= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000454
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000455 def __isub__(self, other):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000456 """Remove all elements of another set from this set."""
457 self._binary_sanity_check(other)
458 data = self._data
Raymond Hettinger1ecfb732003-02-02 16:07:53 +0000459 for elt in ifilter(data.has_key, other):
460 del data[elt]
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000461 return self
462
Raymond Hettinger1b9f5d42002-08-24 06:19:02 +0000463 def difference_update(self, other):
464 """Remove all elements of another set from this set."""
465 self -= other
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000466
467 # Python dict-like mass mutations: update, clear
468
469 def update(self, iterable):
470 """Add all values from an iterable (such as a list or file)."""
Guido van Rossum9f872932002-08-21 03:20:44 +0000471 self._update(iterable)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000472
473 def clear(self):
474 """Remove all elements from this set."""
475 self._data.clear()
476
477 # Single-element mutations: add, remove, discard
478
479 def add(self, element):
480 """Add an element to a set.
481
482 This has no effect if the element is already present.
483 """
484 try:
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000485 self._data[element] = True
486 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000487 transform = getattr(element, "__as_immutable__", None)
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000488 if transform is None:
489 raise # re-raise the TypeError exception we caught
490 self._data[transform()] = True
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000491
492 def remove(self, element):
493 """Remove an element from a set; it must be a member.
494
495 If the element is not a member, raise a KeyError.
496 """
497 try:
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000498 del self._data[element]
499 except TypeError:
Raymond Hettinger2835e372003-02-14 03:42:11 +0000500 transform = getattr(element, "__as_temporarily_immutable__", None)
Raymond Hettingerde6d6972002-08-21 01:35:29 +0000501 if transform is None:
502 raise # re-raise the TypeError exception we caught
503 del self._data[transform()]
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000504
505 def discard(self, element):
506 """Remove an element from a set if it is a member.
507
508 If the element is not a member, do nothing.
509 """
510 try:
Guido van Rossume399d082002-08-23 14:45:02 +0000511 self.remove(element)
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000512 except KeyError:
513 pass
514
Guido van Rossumc9196bc2002-08-20 21:51:59 +0000515 def pop(self):
Tim Peters53506be2002-08-23 20:36:58 +0000516 """Remove and return an arbitrary set element."""
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000517 return self._data.popitem()[0]
518
Raymond Hettinger2835e372003-02-14 03:42:11 +0000519 def __as_immutable__(self):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000520 # Return a copy of self as an immutable set
521 return ImmutableSet(self)
522
Raymond Hettinger2835e372003-02-14 03:42:11 +0000523 def __as_temporarily_immutable__(self):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000524 # Return self wrapped in a temporarily immutable set
525 return _TemporarilyImmutableSet(self)
526
527
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000528class _TemporarilyImmutableSet(BaseSet):
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000529 # Wrap a mutable set as if it was temporarily immutable.
530 # This only supplies hashing and equality comparisons.
531
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000532 def __init__(self, set):
533 self._set = set
Raymond Hettingerfa1480f2002-08-24 02:35:48 +0000534 self._data = set._data # Needed by ImmutableSet.__eq__()
Guido van Rossumd6cf3af2002-08-19 16:19:15 +0000535
536 def __hash__(self):
Raymond Hettingerd5018512002-08-24 04:47:42 +0000537 return self._set._compute_hash()