1. 200a615 Issue #27125: Remove duplicated words from documentation and comments by Martin Panter · 8 years ago
  2. 14a7d63 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  3. f30bad2 remove some copyright notices supserseded by the toplevel ones by Benjamin Peterson · 9 years ago
  4. c06a6d0 Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  5. 5127ed7 Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), by Serhiy Storchaka · 9 years ago
  6. f643b9a Issue 8743: Improve interoperability between sets and the collections.Set abstract base class. by Raymond Hettinger · 10 years ago
  7. 007684a Silence compiler warning for unused declaration. by Raymond Hettinger · 11 years ago
  8. e3b5eda remove unused variable by Benjamin Peterson · 13 years ago
  9. a39de11 Fix the return value of set_discard (issue #10519) by Petri Lehtinen · 13 years ago
  10. 5f4d870 Avoid unnecessary recursive function calls (closes #10519) by Petri Lehtinen · 13 years ago
  11. f079c9b Fix obscure set crashers (#4420). Backport of d56b3cafb1e6, reviewed by Raymond. by Éric Araujo · 13 years ago
  12. 39e32a7 Revert r86726. Sorry about interfering with the rc. by Armin Rigo · 14 years ago
  13. 442e447 A no-op change. It looks like this call was not meant to be a recursive by Armin Rigo · 14 years ago
  14. 3ad323e Issue8757: Implicit set-to-frozenset conversion not thread-safe. by Raymond Hettinger · 14 years ago
  15. c83ea13 Untabify C files. Will watch buildbots. by Antoine Pitrou · 14 years ago
  16. 35b7602 Issue 8436: set.__init__ accepts keyword args by Raymond Hettinger · 14 years ago
  17. 17d9054 Issue #7818: set().test_c_api() doesn't expect a set('abc'), modify the set. by Victor Stinner · 15 years ago
  18. b36e63a The set types can also be called without arguments. by Georg Brandl · 15 years ago
  19. bca1169 #8030: make builtin type docstrings more consistent: use "iterable" instead of "seq(uence)", use "new" to show that set() always returns a new object. by Georg Brandl · 15 years ago
  20. 79628d3 Issue 7263: Fix set.intersection() docstring. by Raymond Hettinger · 15 years ago
  21. c2b9e1a Issue 6573: Fix set.union() for cases where self is in the argument chain. by Raymond Hettinger · 15 years ago
  22. aa68790 Issue #3680: Reference cycles created through a dict, set or deque iterator did not get collected. by Antoine Pitrou · 16 years ago
  23. d78b9dc #4069: aSet.remove(otherSet) would always report the empty frozenset([]) as the missing key. by Amaury Forgeot d'Arc · 16 years ago
  24. d7b7dde Mention exception in docstring by Andrew M. Kuchling · 16 years ago
  25. 53663a6 Issue 2235: __hash__ is once again inherited by default, but inheritance can be blocked explicitly so that collections.Hashable remains meaningful by Nick Coghlan · 16 years ago
  26. 9be2ec1 Added additional __sizeof__ implementations and addressed comments made in by Robert Schuppenies · 16 years ago
  27. 4267be6 Multi-arg form for set.difference() and set.difference_update(). by Raymond Hettinger · 16 years ago
  28. 610a93e Handle the case with zero arguments. by Raymond Hettinger · 16 years ago
  29. 5c4d3d0 Let set.intersection() and set.intersection_update() take multiple input arguments. by Raymond Hettinger · 16 years ago
  30. ee4bcad Let set.union() and set.update() accept multiple inputs. by Raymond Hettinger · 16 years ago
  31. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  32. d99bee7 Issue 2855: Fix obscure crasher by slowing down the entire module. Mimics what was done to dictionaries in r59223. by Raymond Hettinger · 16 years ago
  33. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  34. c5a1cc5 Frozensets do not benefit from autoconversion. by Raymond Hettinger · 16 years ago
  35. a37430a dict.copy() rises from the ashes. Revert r60687. by Raymond Hettinger · 17 years ago
  36. 17a74c3 Add -3 warnings that set.copy(), dict.copy(), and defaultdict.copy() will go away in Py3.x by Raymond Hettinger · 17 years ago
  37. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 17 years ago
  38. cab3d98 Ensure that PySet_Add() operates on a newly created frozenset, like PyTuple_SetItem does. by Amaury Forgeot d'Arc · 17 years ago
  39. 7759a0c Factor-out common code with a new macro by Raymond Hettinger · 17 years ago
  40. ecdcb58 Make PySet_Add() work with frozensets. by Raymond Hettinger · 17 years ago
  41. dee3f65 Revert PySet_Add() changes. by Raymond Hettinger · 17 years ago
  42. d375723 Update test code for change to PySet_Add(). by Raymond Hettinger · 17 years ago
  43. 7c1be2a Make PySet_Add() work with frozensets. Works like PyTuple_SetItem() to build-up values in a brand new frozenset. by Raymond Hettinger · 17 years ago
  44. 3dbd4c5 Changes 54857 and 54840 broke code and were reverted in Py2.5 just before by Raymond Hettinger · 17 years ago
  45. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  46. 64c06e3 Backport of _abccoll.py by Benjamin Arangueren, issue 1383. by Guido van Rossum · 17 years ago
  47. e8d58ba Reposition the decref (spotted by eagle-eye norwitz). by Raymond Hettinger · 17 years ago
  48. 1760c8a Add set.isdisjoint() by Raymond Hettinger · 17 years ago
  49. 0153159 Add a bunch of GIL release/acquire points in tp_print implementations and for by Brett Cannon · 17 years ago
  50. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  51. 360496d Fix a bug in test_c_api() that caused a negative refcount. by Guido van Rossum · 17 years ago
  52. 0bbbfc4 Extend work on rev 52962 and 53829 eliminating redundant PyObject_Hash() calls and fixing set/dict interoperability. by Raymond Hettinger · 17 years ago
  53. 15cade0 Fixup set/dict interoperability. by Raymond Hettinger · 18 years ago
  54. d6fc72a Extend work on revision 52962: Eliminate redundant calls to PyObject_Hash(). by Raymond Hettinger · 18 years ago
  55. 0e7a632 Bypass set specific optimizations for set and frozenset subclasses. by Raymond Hettinger · 18 years ago
  56. db67aef Bug #1648179: set.update() not recognizing __iter__ overrides in dict subclasses. by Raymond Hettinger · 18 years ago
  57. 9fdfadb SF #1486663 -- Allow keyword args in subclasses of set() and frozenset(). by Raymond Hettinger · 18 years ago
  58. 5399910 For sets with cyclical reprs, emit an ellipsis instead of infinitely recursing. by Raymond Hettinger · 18 years ago
  59. 9c14ffb Port Georg's dictobject.c fix keys that were tuples got unpacked on the way to setting a KeyError (svn revision 52535, sf bug by Raymond Hettinger · 18 years ago
  60. 0c85086 Port Armin's fix for a dict resize vulnerability (svn revision 46589, sf bug 1456209). by Raymond Hettinger · 18 years ago
  61. f31e175 Eliminate two redundant calls to PyObject_Hash(). by Raymond Hettinger · 18 years ago
  62. a5ccda9 Fix warnings with HP's C compiler. It doesn't recognize that infinite by Neal Norwitz · 18 years ago
  63. c563a1c Fix refcounts and add error checks. by Raymond Hettinger · 18 years ago
  64. 52740be [Bug #1414697] Change docstring of set/frozenset types to specify that the contents are unique. Raymond, please feel free to edit or revert. by Andrew M. Kuchling · 18 years ago
  65. 04e39ec otherset is known to be non-NULL based on checks before and DECREF after. by Neal Norwitz · 18 years ago
  66. 0f2783c Use Py_ssize_t by Neal Norwitz · 18 years ago
  67. ed8f783 Clear dummy and emptyfrozenset, so that we don't have by Martin v. Löwis · 18 years ago
  68. e170937 Ignore the references to the dummy objects used as deleted keys by Armin Rigo · 18 years ago
  69. 72d2067 Remove "static forward" declaration. Move constructors after the type objects. by Martin v. Löwis · 18 years ago
  70. 176014f SF patch #1458476 with modifications based on discussions in python-dev. This by Barry Warsaw · 18 years ago
  71. 347b300 Remove unnecessary casts in type object initializers. by Georg Brandl · 18 years ago
  72. 334b5b2 Tighten an overbroad and misleading assertion. (Reported by Jim Jewett.) by Raymond Hettinger · 18 years ago
  73. 8c49c82 Use Py_ssize_t for PySet_Size() like all the other Py*_Size() functions. by Neal Norwitz · 19 years ago
  74. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  75. f5b3e36 Renamed _length_cue() to __length_hint__(). See: by Armin Rigo · 19 years ago
  76. 0c6e2f1 Remove some shadowed variables by Neal Norwitz · 19 years ago
  77. 6576bd8 Prevent name pollution by making lots of internal functions static. by Neal Norwitz · 19 years ago
  78. 6b27cda Convert iterator __len__() methods to a private API. by Raymond Hettinger · 19 years ago
  79. 9bda1d6 No longer ignore exceptions raised by comparisons during key lookup. by Raymond Hettinger · 19 years ago
  80. 02c4287 Disallow keyword arguments for type constructors that don't use them. by Georg Brandl · 19 years ago
  81. 9c1491f * Add a fast equality check path for frozensets where the hash value has by Raymond Hettinger · 19 years ago
  82. d8e1338 Add shortcuts for a|a and a&a. by Raymond Hettinger · 19 years ago
  83. f408ddf Results of a line-by-line comparison back to dictobject.c. by Raymond Hettinger · 19 years ago
  84. c47e01d Numerous fix-ups to C API and docs. Added tests for C API. by Raymond Hettinger · 19 years ago
  85. 994c2c1 DECREF --> XDECREF by Raymond Hettinger · 19 years ago
  86. beb3101 Add a C API for sets and frozensets. by Raymond Hettinger · 19 years ago
  87. ce8185e More function re-ordering (placing like functions together). by Raymond Hettinger · 19 years ago
  88. ed6c1ef * Bring lookkey() and lookkey_string() closer to dict version. by Raymond Hettinger · 19 years ago
  89. b02c35e * Fix SF #1257731. Make __contains__(), remove(), and discard() only do by Raymond Hettinger · 19 years ago
  90. c991db2 * Add short-circuit code for in-place operations with self (such as by Raymond Hettinger · 19 years ago
  91. bc841a1 * Bring in INIT_NONZERO_SET_SLOTS macro from dictionary code. by Raymond Hettinger · 19 years ago
  92. 99220fa * Removed checked_error flag which no longer provides any benefit. by Raymond Hettinger · 19 years ago
  93. 5ba0cbe * set_new() doesn't need to zero the structure a second time after tp_alloc by Raymond Hettinger · 19 years ago
  94. fe889f3 Factor away a redundant clear() function. by Raymond Hettinger · 19 years ago
  95. a580c47 * Improve a variable name: entry0 --> table. by Raymond Hettinger · 19 years ago
  96. a9d9936 * Move copyright notice to top and indicate derivation from sets.py and by Raymond Hettinger · 19 years ago
  97. 67962ab Model set.pop() after dict.popitem(). by Raymond Hettinger · 19 years ago
  98. d794666 * Improve code for the empty frozenset singleton: by Raymond Hettinger · 19 years ago
  99. e295676 Fix build on gcc: PySetIter_Type should be static in definition part also. by Hye-Shik Chang · 19 years ago
  100. 06d8cf8 Improve variable names. by Raymond Hettinger · 19 years ago