The script below illustrates a capability of set and frozenset that I would like to understand, and, if possible replicate in a subclass of collections.MutableSet. (BTW, this feature is not just a oddity of set and frozenset: it is actively verified in Python's unit tests for these types.)
The script performs the following steps for each of several types/classes of set-like objects:
- create a dict
dwhosenkeys are specially instrumented integers that keep track of how many times their__hash__method is invoked (d's values are allNone, but this is irrelevant); - compute (and save for later) the cumulative number of times the
__hash__method ofd's keys has been called so far (i.e. during the creation ofd); - create an object
sof the current set-like type/class, usingdas the argument to the constructor (hence,d's keys will become the contents of the resulting object, whereasd's values will be ignored); - redo the calculation described in (2);
- output the results from calculations from (2) and (4) above.
Here's the output for the case where n is set to 10 for all types/classes (I give the full code at the end of this post):
set: 10 10
frozenset: 10 10
Set: 10 20
myset: 10 20
The conclusion is clear: constructing a set or a frozenset from d does not require invoking the __hash__ method of d's keys, hence the call counts remain unchanged after these constructors return. This is not the case, however, when instances of Set or myset are created from d. In each of these cases it appears that each of d's keys' __hash__ is invoked once.
How can I modify
myset(see below) so that running its constructor withdas its argument results in no calls tod's keys' hash methods?
Thanks!
from sets import Set
from collections import MutableSet
class hash_counting_int(int):
def __init__(self, *args):
self.count = 0
def __hash__(self):
self.count += 1
return int.__hash__(self)
class myset(MutableSet):
def __init__(self, iterable=()):
# The values of self.dictset matter! See further notes below.
self.dictset = dict((item, i) for i, item in enumerate(iterable))
def __bomb(s, *a, **k): raise NotImplementedError
add = discard = __contains__ = __iter__ = __len__ = __bomb
def test_do_not_rehash_dict_keys(thetype, n=1):
d = dict.fromkeys(hash_counting_int(k) for k in xrange(n))
before = sum(elem.count for elem in d)
s = thetype(d)
after = sum(elem.count for elem in d)
return before, after
for t in set, frozenset, Set, myset:
before, after = test_do_not_rehash_dict_keys(t, 10)
print '%s: %d %d' % (t.__name__, before, after)
Note that, the values of self.dictset are integers, and are pointedly not the same as the (ignored) iterable.values() (in those cases where iterable.values actually exists)! This is an attempt (admittedly feeble) to indicate that, even when iterable is a dict (which need not be the case) and its values are ignored, in the real code that this example is standing in for, the values of self.dictset are always significant. This means that any solution based on using self.dictset.update(iterable) still has to solve the problem of assigning the proper values to its keys, and once again one faces the problem of iterating over these keys without invoking their __hash__ methods. (In addition, solutions based on self.dictset.update(iterable) also have to solve the problem of properly handling the case when iterable is not a suitable argument for self.dictset.update, although this problem is not insurmountable.)
Edits: 1) clarified the significance of myset.dictset's values; 2) renamed myset.__bomb__ to myset.__bomb.