- b894039 Gave __sub__/difference a factor of 2-5 speed boost. by Tim Peters · 22 years ago
- 334b4a5 Gave __xor__/symmetric_difference a factor of 2-5 speed boost. by Tim Peters · 22 years ago
- 37faed2 Sped union by a factor of 3-4. by Tim Peters · 22 years ago
- d33e6be Sped intersection by large factors (3-5x faster than before on sets of by Tim Peters · 22 years ago
- 4a2f91e Added a clue about why xyz_update isn't the same as __xyz__. by Tim Peters · 22 years ago
- ea76c98 Implemented <, <=, >, >= for sets, giving subset and proper-subset by Tim Peters · 22 years ago
- 4924db1 Record a clue about why __or__ is not union, etc. by Tim Peters · 22 years ago
- e87ab3f Removed < <= > >= from the API. Implemented as comparisons of the by Raymond Hettinger · 22 years ago
- 1b9f5d4 At Tim Peter's suggestion, propagated GvR's binary operator changes to by Raymond Hettinger · 22 years ago
- d501851 Since instances of _TemporarilyImmutableSet are always thrown away by Raymond Hettinger · 22 years ago
- fa1480f 1. Removed module self test in favor of unittests -- Timbot's suggestion. by Raymond Hettinger · 22 years ago
- 53506be pop() docstring: this isn't a randomly-chosen element, it's merely by Tim Peters · 22 years ago
- d06d030 Comment repair. by Tim Peters · 22 years ago
- e399d08 RH pointed out that discard(element) doesn't do the transformation on by Guido van Rossum · 22 years ago
- dc61cdf Change the binary operators |, &, ^, - to return NotImplemented rather by Guido van Rossum · 22 years ago
- d9c9151 Now that __init__ transforms set elements, we know that all of the by Raymond Hettinger · 22 years ago
- 80d21af Sped ._update() method by factoring try/except out of the inner loop. by Raymond Hettinger · 22 years ago
- 9f87293 Ouch. The test suite *really* needs work!!!!! There were several by Guido van Rossum · 22 years ago
- 2658822 Add Raymond H to the list of authors; add some XXX comments about by Guido van Rossum · 22 years ago
- 43db0d6 Fast size check for sub/super set tests by Raymond Hettinger · 22 years ago
- de6d697 Optimize try/except ordering in sets.py. by Raymond Hettinger · 22 years ago
- ede3a0d Minor typo by Raymond Hettinger · 22 years ago
- c9196bc Rename popitem() to pop(). (An idea from SF patch 597444.) by Guido van Rossum · 22 years ago
- 5033b36 Move __init__ from BaseSet into Set and ImmutableSet. This causes a by Guido van Rossum · 22 years ago
- 290f187 Add a note reminding the reader that sets are not sequences. I by Guido van Rossum · 22 years ago
- 0b650d7 Fix typo in __slots__ of ImmutableSet. by Guido van Rossum · 22 years ago
- d6cf3af Set classes and their unit tests, from sandbox. by Guido van Rossum · 22 years ago