1. 0347c71 Merged revisions 83385-83389,83391 via svnmerge from by Georg Brandl · 15 years ago
  2. 35b7602 Issue 8436: set.__init__ accepts keyword args by Raymond Hettinger · 15 years ago
  3. 0762788 #7092 - Silence more py3k deprecation warnings, using test_support.check_py3k_warnings() helper. by Florent Xicluna · 15 years ago
  4. d80b4bf #7092: silence some more py3k warnings. by Ezio Melotti · 15 years ago
  5. 17d9054 Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. by Victor Stinner · 15 years ago
  6. a4f46e1 Remove unused imports in test modules. by Georg Brandl · 16 years ago
  7. aa98058 use assert[Not]In where appropriate by Ezio Melotti · 16 years ago
  8. ce8e33a Reverting the Revision: 77368. I committed Flox's big patch for tests by by Senthil Kumaran · 16 years ago
  9. 3ddc435 Fixing - Issue7026 - RuntimeError: dictionary changed size during iteration. Patch by flox by Senthil Kumaran · 16 years ago
  10. c2b9e1a Issue 6573: Fix set.union() for cases where self is in the argument chain. by Raymond Hettinger · 16 years ago
  11. 5c8da86 convert usage of fail* to assert* by Benjamin Peterson · 16 years ago
  12. 733dc74 fill in actual issue number in tests by Antoine Pitrou · 17 years ago
  13. aa68790 Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected. by Antoine Pitrou · 17 years ago
  14. 0fc0747 Issue #4740: Use HIGHEST_PROTOCOL in pickle test. by Hirokazu Yamamoto · 17 years ago
  15. d78b9dc #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as the missing key. by Amaury Forgeot d'Arc · 17 years ago
  16. 4267be6 Multi-arg form for set.difference() and set.difference_update(). by Raymond Hettinger · 17 years ago
  17. 610a93e Handle the case with zero arguments. by Raymond Hettinger · 17 years ago
  18. 5c4d3d0 Let set.intersection() and set.intersection_update() take multiple input arguments. by Raymond Hettinger · 17 years ago
  19. ee4bcad Let set.union() and set.update() accept multiple inputs. by Raymond Hettinger · 17 years ago
  20. be9160b Don't try to close a non-open file. by Neal Norwitz · 17 years ago
  21. 6170874 Expand tests to include nested graph structures. by Raymond Hettinger · 18 years ago
  22. 1760c8a Add set.isdisjoint() by Raymond Hettinger · 18 years ago
  23. 0d4c06e Whitespace normalization. Ugh, we really need to do this more often. by Neal Norwitz · 18 years ago
  24. e3146f5 Add test and fix for fromkeys() optional argument. by Raymond Hettinger · 18 years ago
  25. 0bbbfc4 Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability. by Raymond Hettinger · 18 years ago
  26. ea5962f Whitespace normalization. by Tim Peters · 18 years ago
  27. d6fc72a Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash(). by Raymond Hettinger · 18 years ago
  28. f733abb Whitespace normalization. by Tim Peters · 19 years ago
  29. 9fdfadb SF #1486663 -- Allow keyword args in subclasses of set() and frozenset(). by Raymond Hettinger · 19 years ago
  30. 5399910 For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing. by Raymond Hettinger · 19 years ago
  31. c789f34 Add test for SF bug 1576657 by Raymond Hettinger · 19 years ago
  32. 6902b44 Try to repair more new buildbot failures in "x86 OpenBSD trunk", due by Tim Peters · 19 years ago
  33. 176014f SF patch #1458476 with modifications based on discussions in python-dev. This by Barry Warsaw · 19 years ago
  34. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
  35. fcf4435 Improve test coverage. Hope the test_file changes work the same on windows. by Neal Norwitz · 20 years ago
  36. 9bda1d6 No longer ignore exceptions raised by comparisons during key lookup. by Raymond Hettinger · 20 years ago
  37. c47e01d Numerous fix-ups to C API and docs. Added tests for C API. by Raymond Hettinger · 20 years ago
  38. 97979dd * Fix SF #1257731. Make __contains__(), remove(), and discard() only do by Raymond Hettinger · 20 years ago
  39. c991db2 * Add short-circuit code for in-place operations with self (such as by Raymond Hettinger · 20 years ago
  40. d794666 * Improve code for the empty frozenset singleton: by Raymond Hettinger · 20 years ago
  41. 82cb9a2 Add test for hash commutativity. by Raymond Hettinger · 20 years ago
  42. bb999b5 SF patch #1200018: Restore GC support to set objects by Raymond Hettinger · 20 years ago
  43. 15056a5 SF 1062353: set pickling problems by Raymond Hettinger · 21 years ago
  44. 6429a47 Use Py_CLEAR(). Add unrelated test. by Raymond Hettinger · 21 years ago
  45. ffdb8bb Use floor division operator. by Raymond Hettinger · 21 years ago
  46. eae05de * fix the print test * add more __init__ tests by Raymond Hettinger · 21 years ago
  47. 691d805 Make sets and deques weak referencable. by Raymond Hettinger · 21 years ago
  48. 70a6b49 Replace backticks with repr() or "%r" by Walter Dörwald · 21 years ago
  49. 58eb11c Whitespace normalization. by Tim Peters · 22 years ago
  50. 6e70acc Strengthen the test for hash effectiveness by Raymond Hettinger · 22 years ago
  51. 64958a1 Guido grants a Christmas wish: by Raymond Hettinger · 22 years ago
  52. f5f41bf * Checkin remaining documentation by Raymond Hettinger · 22 years ago
  53. 49ba4c3 * Simplify hash function and add test to show effectiveness of the hash by Raymond Hettinger · 22 years ago
  54. bfd334a Extend temporary hashability to remove() and discard(). by Raymond Hettinger · 22 years ago
  55. 19c2d77 Allow temporary hashability for the __contains__ test. by Raymond Hettinger · 22 years ago
  56. 3fbec70 issubset() and issuperset() to work with general iterables by Raymond Hettinger · 22 years ago
  57. 50a4bb3 Various fixups (most suggested by Armin Rigo). by Raymond Hettinger · 22 years ago
  58. a690a99 * Migrate set() and frozenset() from the sandbox. by Raymond Hettinger · 22 years ago