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