1. 745dc65 closes bpo-32898: Fix debug build crash with COUNT_ALLOCS (GH-5800) by Eddie Elizondo · 6 years ago
  2. 8017b80 bpo-28685: Fix compiler warning (GH-5423) by Victor Stinner · 6 years ago
  3. 1e34da4 bpo-28685: Optimize sorted() list.sort() with type-specialized comparisons (#582) by embg · 6 years ago
  4. 1fb72d2 bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570) by Serhiy Storchaka · 7 years ago
  5. 25420fe bpo-32030: Add more options to _PyCoreConfig (#4485) by Victor Stinner · 7 years ago
  6. e8b1965 bpo-23699: Use a macro to reduce boilerplate code in rich comparison functions (GH-793) by stratakis · 7 years ago
  7. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  8. b879fe8 Expand the PySlice_GetIndicesEx macro. (#1023) by Serhiy Storchaka · 7 years ago
  9. 80ec836 bpo-29748: Added the slice index converter in Argument Clinic. (#549) by Serhiy Storchaka · 7 years ago
  10. 202fda5 bpo-24037: Add Argument Clinic converter `bool(accept={int})`. (#485) by Serhiy Storchaka · 7 years ago
  11. fdd42c4 bpo-20185: Convert list object implementation to Argument Clinic. (#542) by Serhiy Storchaka · 7 years ago
  12. 2e56424 bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() and tuple(). (#518) by Serhiy Storchaka · 7 years ago
  13. 58d23e6 bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486) by Serhiy Storchaka · 7 years ago
  14. 4cee049 bpo-27660: remove unnecessary overflow checks in list_resize (GH-189) by Xiang Zhang · 7 years ago
  15. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 8 years ago
  16. 7cf8beb Issue #29331: Simplified argument parsing in sorted() and list.sort(). by Serhiy Storchaka · 8 years ago
  17. 94b39ce Issue #1621: Overflow should not be possible in listextend() by Martin Panter · 8 years ago
  18. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  19. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  20. 2f8bfef replace PY_SIZE_MAX with SIZE_MAX by Benjamin Peterson · 8 years ago
  21. 05448a6 merge 3.5 by Benjamin Peterson · 8 years ago
  22. 5a7d923 make sure to not call memcpy with a NULL second argument by Benjamin Peterson · 8 years ago
  23. 5d13238 Issue #27662: don't use PY_SIZE_MAX for overflow checking in List_New. Patch by Xiang Zhang. by Mark Dickinson · 8 years ago
  24. b93d863 Issue #1621: Avoid signed overflow in list and tuple operations by Martin Panter · 8 years ago
  25. 7e160ce Issue #23034: The output of a special Python build with defined COUNT_ALLOCS, by Serhiy Storchaka · 8 years ago
  26. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  27. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  28. ab479c4 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  29. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 8 years ago
  30. 0dceb91 Tests versus zero are more compact than tests versus -1. by Raymond Hettinger · 9 years ago
  31. 1ed017a Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR. by Serhiy Storchaka · 9 years ago
  32. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  33. a30e225 merge 3.4 (#24044) by Benjamin Peterson · 9 years ago
  34. bd91ee9 merge 3.3 (#24044) by Benjamin Peterson · 9 years ago
  35. 51454a6 merge 3.2 (#24044) by Benjamin Peterson · 9 years ago
  36. 0823ffb properly handle malloc failure (closes #24044) by Benjamin Peterson · 9 years ago
  37. c8fd9ce merge 3.4 (#23515) by Benjamin Peterson · 9 years ago
  38. b808d59 fix merge_collapse to actually maintain the invariant it purports to (closes #23515) by Benjamin Peterson · 9 years ago
  39. ffff144 Issue #22077: Improve index error messages for bytearrays, bytes, lists, and by Terry Jan Reedy · 10 years ago
  40. af9049e merge 3.3 by Benjamin Peterson · 10 years ago
  41. 4a42cd4 avoid referencing past the bounds of an array by Benjamin Peterson · 10 years ago
  42. 1aca78d merge 3.3 by Benjamin Peterson · 10 years ago
  43. ef87f8c avoid referencing out-of-bounds memory by Benjamin Peterson · 10 years ago
  44. 25dded0 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 10 years ago
  45. c5cc501 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 10 years ago
  46. 35f2803 Close #19578: Fix list_ass_subscript(), handle list_resize() failure by Victor Stinner · 11 years ago
  47. 4a58707 Add _PyUnicodeWriter_WriteASCIIString() function by Victor Stinner · 11 years ago
  48. 4d3f109 Issue #19513: Disable overallocation of the PyUnicodeWriter before the last write by Victor Stinner · 11 years ago
  49. b8fb197 Issue #19513: Simplify list_repr() by Victor Stinner · 11 years ago
  50. 5c73347 Issue #19513: repr(list) now uses the PyUnicodeWriter API, it is faster than by Victor Stinner · 11 years ago
  51. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  52. 2c40f64 Issue #18408: Fix list_ass_slice(), handle list_resize() failure by Victor Stinner · 11 years ago
  53. 095d99f Issue #18408: Fix listpop(), handle list_ass_slice() failure by Victor Stinner · 11 years ago
  54. 32fd6ea Issue #18408: Fix list.extend(), handle list_resize() failure by Victor Stinner · 11 years ago
  55. b27cd3e Issue #18408: Fix list.pop() to handle list_resize() failure (MemoryError). by Victor Stinner · 11 years ago
  56. 7660b88 Issue #9566: More long/Py_ssize_t fixes in tuple and list iterators (it_index) by Victor Stinner · 11 years ago
  57. aa9a79d Issue #16148: implemented PEP 424 by Armin Ronacher · 12 years ago
  58. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  59. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 12 years ago
  60. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 12 years ago
  61. d0acb41 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 12 years ago
  62. 0197ff9 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 12 years ago
  63. 9a812cb Issue #13389: Full garbage collection passes now clear the freelists for by Antoine Pitrou · 13 years ago
  64. 9589ab1 Revert "Accept None as start and stop parameters for list.index() and tuple.index()" by Petri Lehtinen · 13 years ago
  65. ebfaabd Revert "Accept None as start and stop parameters for list.index() and tuple.index()" by Petri Lehtinen · 13 years ago
  66. 864741b Issue #13350: Replace most usages of PyUnicode_Format by PyUnicode_FromFormat. by Amaury Forgeot d'Arc · 13 years ago
  67. 8e9f6c4 Accept None as start and stop parameters for list.index() and tuple.index(). by Petri Lehtinen · 13 years ago
  68. c2f0a46 Accept None as start and stop parameters for list.index() and tuple.index() by Petri Lehtinen · 13 years ago
  69. 388349a Closes #12192: Document that mutating list methods do not return the instance (original patch by Mike Hoy). by Georg Brandl · 13 years ago
  70. c61c8d7 Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  71. eeb7eea Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 13 years ago
  72. c7d93b7 Issue #1621: Fix undefined behaviour from signed overflow in datetime module hashes, array and list iterations, and get_integer (stringlib/string_format.h) by Mark Dickinson · 13 years ago
  73. 8f53d09 Merge issue #12973 list_repeat fix. by Mark Dickinson · 13 years ago
  74. c0420fd Issue #12973: Fix undefined-behaviour-inducing overflow check in list_repeat. by Mark Dickinson · 13 years ago
  75. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 13 years ago
  76. eda70b8 #11335: Fix memory leak after key function failure in sort by Daniel Stutzbach · 13 years ago
  77. 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 13 years ago
  78. 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 13 years ago
  79. b88ed15 #11565: Merge with 3.2. by Ezio Melotti · 13 years ago
  80. 8eda5f7 #11335: Fix memory leak when a sort key function throws an exception by Daniel Stutzbach · 13 years ago
  81. cbbaa96 Issue #10516: adding list.clear() and list.copy() methods by Eli Bendersky · 13 years ago
  82. 0fcab4a Issue #9566: use Py_ssize_t instead of int by Victor Stinner · 14 years ago
  83. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  84. 9efdcca code style by Benjamin Peterson · 14 years ago
  85. 9833822 Issue9915: speeding up sorting with a key by Daniel Stutzbach · 14 years ago
  86. 00da4e0 Remove unneeded casts to hashfunc. by Georg Brandl · 14 years ago
  87. 0538064 reorder and save a comparison by Benjamin Peterson · 14 years ago
  88. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  89. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  90. 807e98e Merged revisions 78541 via svnmerge from by Ezio Melotti · 14 years ago
  91. 7f807b7 Merged revisions 78515-78516,78522 via svnmerge from by Ezio Melotti · 14 years ago
  92. 5a41a4c Merged revisions 78185 via svnmerge from by Mark Dickinson · 14 years ago
  93. 66f575b Merged revisions 78183-78184 via svnmerge from by Mark Dickinson · 14 years ago
  94. a53f2c9 Merged revisions 77823 via svnmerge from by Mark Dickinson · 14 years ago
  95. bc09964 Merged revisions 77821 via svnmerge from by Mark Dickinson · 14 years ago
  96. f6489f9 Merged revisions 75264,75268,75293,75318,75391-75392,75436,75478,75971,76003,76058,76140-76141,76231,76380,76428-76429 via svnmerge from by Benjamin Peterson · 15 years ago
  97. 8f6713f Merged revisions 76235 via svnmerge from by Benjamin Peterson · 15 years ago
  98. a0dfa82 Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from by Benjamin Peterson · 15 years ago
  99. e836423 Issue 1242657: list(obj) can swallow KeyboardInterrupt. by Raymond Hettinger · 15 years ago
  100. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 15 years ago