frozen sets pay no heed to order
I superficially assumed a frozenset accounts for the order of items it was constructed with such that the following assertion would fail. assert( frozenset([('a',1), ('b',1)]) == frozenset([('b',1), ('a',1)]) ) Thinking about it for a second, set...
Jul 28, 20241 min read8
