1. 6ba5665 Fix typo in comment. by Eric V. Smith · 11 years ago
  2. 74fc8c4 Add comments to frozenset_hash(). by Raymond Hettinger · 11 years ago
  3. e259f13 Minor code clean-up. Keep the C-API all in one section. by Raymond Hettinger · 11 years ago
  4. 710a67e Note that LINEAR_PROBES can be set to zero. by Raymond Hettinger · 11 years ago
  5. 4ef0528 Minor beautification. Put updates and declarations in a more logical order. by Raymond Hettinger · 11 years ago
  6. 0ce1953 When LINEAR_PROBES=0, let the compiler remove the dead code on its own. by Raymond Hettinger · 11 years ago
  7. c70a2b7 Make the linear probe sequence clearer. by Raymond Hettinger · 11 years ago
  8. 8408dc5 Issue 18771: Make it possible to set the number linear probes at compile-time. by Raymond Hettinger · 11 years ago
  9. 742d871 Put the defines in the logical section and fix indentation. by Raymond Hettinger · 11 years ago
  10. 583cd03 Minor code beautification. by Raymond Hettinger · 11 years ago
  11. 4ea9080 Improve code clarity by removing two unattractive macros. by Raymond Hettinger · 11 years ago
  12. 8f8839e Remove the freelist scheme for setobjects. by Raymond Hettinger · 11 years ago
  13. 04fd9dd Small rearrangement to bring together the three functions for probing the hash table. by Raymond Hettinger · 11 years ago
  14. ae7b00e Move the overview comment to the top of the file. by Raymond Hettinger · 11 years ago
  15. c56e0e3 Minor touchups. by Raymond Hettinger · 11 years ago
  16. 69492da Factor-out the common code for setting a KeyError. by Raymond Hettinger · 11 years ago
  17. a35adf5 Instead of XORed indicies, switch to a hybrid of linear probing and open addressing. by Raymond Hettinger · 11 years ago
  18. 6c3c1cc Update copyright. by Raymond Hettinger · 11 years ago
  19. 95c0d67 Further reduce the cost of hash collisions by inspecting an additional nearby entry. by Raymond Hettinger · 11 years ago
  20. afe8909 Tighten-up the lookkey() logic and beautify the code a bit. by Raymond Hettinger · 11 years ago
  21. 9d95254 Issue #18772: fix the gdb plugin after the set implementation changes by Antoine Pitrou · 11 years ago
  22. bfc1e1a Add the same dummy type that is used in dictionaries. by Raymond Hettinger · 11 years ago
  23. fcf3b50 Issue 18797: Remove unneeded refcount adjustments for dummy objects. by Raymond Hettinger · 11 years ago
  24. 5bb1b1d Hoist the global dummy lookup out of the inner loop for set_merge(). by Raymond Hettinger · 11 years ago
  25. 929cbac Remove a redundant hash table probe (this was artifact from an earlier draft of the patch). by Raymond Hettinger · 11 years ago
  26. ae9e616 Issue 18772: Restore set dummy object back to unicode and restore the identity checks in lookkey(). by Raymond Hettinger · 11 years ago
  27. 3c0a4f5 Issue18771: Reduce the cost of hash collisions for set objects. by Raymond Hettinger · 11 years ago
  28. 07351a0 Remove the else-clause because the conditions are no longer mutually exclusive. by Raymond Hettinger · 11 years ago
  29. 237b34b Use a known unique object for the dummy entry. by Raymond Hettinger · 11 years ago
  30. 8ad3919 Hoist the global "dummy" lookup outside of the reinsertion loop. by Raymond Hettinger · 11 years ago
  31. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  32. c629d4c Replace outdated optimization with clearer code that compiles better. by Raymond Hettinger · 11 years ago
  33. 5e946ba Fix compilation warning with gcc 4.8 (unused typedef) by Antoine Pitrou · 11 years ago
  34. c2176e4 Fix the internals of our hash functions to used unsigned values during hash by Gregory P. Smith · 12 years ago
  35. 27cbcd6 Fix the internals of our hash functions to used unsigned values during hash by Gregory P. Smith · 12 years ago
  36. 0e1af28 Fix typo. by Ezio Melotti · 12 years ago
  37. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  38. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 12 years ago
  39. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  40. 093ce9c Issue #6695: Full garbage collection runs now clear the freelist of set objects. by Antoine Pitrou · 13 years ago
  41. 1cebc20 merge 3.2 by Benjamin Peterson · 13 years ago
  42. 2b50a01 remove unused variable by Benjamin Peterson · 13 years ago
  43. c34f5c2 Fix the return value of set_discard (issue #10519) by Petri Lehtinen · 13 years ago
  44. e0aa803 Fix the return value of set_discard (issue #10519) by Petri Lehtinen · 13 years ago
  45. 7c5e34d Avoid unnecessary recursive function calls (#closes #10519) by Petri Lehtinen · 13 years ago
  46. 5acc27e Avoid unnecessary recursive function calls (closes #10519) by Petri Lehtinen · 13 years ago
  47. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  48. 1ee1b6f Use identifier API for PyObject_GetAttrString. by Martin v. Löwis · 13 years ago
  49. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  50. 57e683e Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, tuple.__hash__, frozenset.__hash__ and set indexing operations. by Mark Dickinson · 13 years ago
  51. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  52. 4f2dab5 Revert my commit 7ba176c2f558: "Avoid useless "++" at the end of functions by Victor Stinner · 13 years ago
  53. a1a807b set_repr(): handle correctly PyUnicode_FromUnicode() error (MemoryError) by Victor Stinner · 13 years ago
  54. 97e561e Avoid useless "++" at the end of functions by Victor Stinner · 13 years ago
  55. bbcfc1f Merge from 3.1. by Éric Araujo · 13 years ago
  56. 4804991 Fix obscure set crashers (#8420). Backport of d56b3cafb1e6, reviewed by Raymond. by Éric Araujo · 13 years ago
  57. 715f3cd Issue #8685: Speed up set difference `a - b` when source set `a` is by Antoine Pitrou · 14 years ago
  58. fbb1c61 Follow up to #9778: fix regressions on 64-bit Windows builds by Antoine Pitrou · 14 years ago
  59. 00da4e0 Remove unneeded casts to hashfunc. by Georg Brandl · 14 years ago
  60. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 14 years ago
  61. 2d44449 Reindent. by Georg Brandl · 14 years ago
  62. faf7b7f Issue 8420: Fix obscure set crashers. by Raymond Hettinger · 14 years ago
  63. 928d4ee Removed an extraneous semicolon by Daniel Stutzbach · 14 years ago
  64. f72006f Merged revisions 84146-84147,84150 via svnmerge from by Antoine Pitrou · 14 years ago
  65. 671b4d9 Issue #9612: The set object is now 64-bit clean under Windows. by Antoine Pitrou · 14 years ago
  66. 51ced7a Issue8757: Implicit set-to-frozenset conversion not thread-safe. by Raymond Hettinger · 14 years ago
  67. 38bf2cc Issue8757: Implicit set-to-frozenset conversion not thread-safe. by Raymond Hettinger · 14 years ago
  68. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  69. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  70. 3fb156c Issue 8436: set.__init__ accepts keyword args by Raymond Hettinger · 14 years ago
  71. dbe9612 Issue 8436: set.__init__ accepts keyword args by Raymond Hettinger · 14 years ago
  72. b136a9c Issue 8420: Fix ref counting problem in set_repr(). by Raymond Hettinger · 14 years ago
  73. f88db8d Issue 8420: Fix ref counting problem in set_repr(). by Raymond Hettinger · 14 years ago
  74. 08b36bd Merged revisions 78886 via svnmerge from by Victor Stinner · 14 years ago
  75. 807e98e Merged revisions 78541 via svnmerge from by Ezio Melotti · 14 years ago
  76. 7f807b7 Merged revisions 78515-78516,78522 via svnmerge from by Ezio Melotti · 14 years ago
  77. c566df3 Issue 7263: Fix set.intersection() docstring. by Raymond Hettinger · 15 years ago
  78. 63853bb Issue 6573: Fix set.union() for cases where self is in the argument chain. by Raymond Hettinger · 15 years ago
  79. e805ecc Issue 6573: Fix set.union() for cases where self is in the argument chain. by Raymond Hettinger · 15 years ago
  80. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago
  81. 211c625 Issue #1717, stage 2: remove uses of tp_compare in Modules and most Objects. by Mark Dickinson · 15 years ago
  82. 8055afd Issue #4910, patch 3/3: rename nb_long to nb_reserved by Mark Dickinson · 16 years ago
  83. 7ddda78 Merged revisions 68128 via svnmerge from by Antoine Pitrou · 16 years ago
  84. 2212e52 Update copyright for recent changes. by Raymond Hettinger · 16 years ago
  85. 7d99f09 Issue #1721812: Binary operations and copy operations on set/frozenset by Raymond Hettinger · 16 years ago
  86. f10a79a merge from trunk by Benjamin Peterson · 16 years ago
  87. 4cc0f24 Rename PyUnicode_AsString -> _PyUnicode_AsString and by Marc-André Lemburg · 16 years ago
  88. d1abd25 Manual forward port of 64962 - use PyObject_HashNotImplemented as a tp_hash level indicator that the default hash implementation has not been inherited by Nick Coghlan · 16 years ago
  89. fbe94c5 Merged revisions 64842,64853,64856,64945 via svnmerge from by Robert Schuppenies · 16 years ago
  90. fdfe62d Merged revisions 64089,64098,64100-64102,64113,64115-64116,64118,64120,64132,64342 via svnmerge from by Amaury Forgeot d'Arc · 16 years ago
  91. 4f92ca4 Remove nb_reserved (nb_coerce), nb_hex, and nb_oct from PyNumberMethods by Benjamin Peterson · 16 years ago
  92. c28e1fa Merged revisions 64002-64003,64012,64036-64037,64047,64050-64052,64054-64055,64066,64071 via svnmerge from by Georg Brandl · 16 years ago
  93. f08a9dd Merged revisions 63724,63726,63732,63744,63754-63755,63757-63758,63760,63775,63781-63782,63787,63805-63808,63818-63819,63823-63824 via svnmerge from by Georg Brandl · 16 years ago
  94. 10956ea Forward port r62848. by Raymond Hettinger · 16 years ago
  95. 2202f87 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60568-60598,60600-60616 via svnmerge from by Christian Heimes · 16 years ago
  96. 15ebc88 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552-60567 via svnmerge from by Christian Heimes · 16 years ago
  97. db96789 Fixed r60466 by Christian Heimes · 16 years ago
  98. fab2b30 Remove duplicate function. by Raymond Hettinger · 16 years ago
  99. fd66e51 Merged revisions 60383-60407 via svnmerge from by Christian Heimes · 16 years ago
  100. af98da1 Merged revisions 60284-60349 via svnmerge from by Christian Heimes · 16 years ago