1. bcb1983 bpo-40887: Don't use finalized free lists (GH-20700) by Victor Stinner · 5 years ago
  2. 69ac6e5 bpo-40521: Make tuple free list per-interpreter (GH-20247) by Victor Stinner · 5 years ago
  3. fe2978b bpo-39573: Convert Py_REFCNT and Py_SIZE to functions (GH-20429) by Victor Stinner · 5 years ago
  4. 7d847e2 bpo-39573: Fix buildbot failure for tupleobject.c (GH-20391) by Dong-hee Na · 5 years ago
  5. e682b26 bpo-34397: Remove redundant overflow checks in list and tuple implementation. (GH-8757) by Sergey Fedoseev · 5 years ago
  6. b4b5386 bpo-40521: Disable free lists in subinterpreters (GH-19937) by Victor Stinner · 5 years ago
  7. ae00a5a bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769) by Victor Stinner · 5 years ago
  8. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 5 years ago
  9. a15e260 bpo-40170: Add _PyIndex_Check() internal function (GH-19426) by Victor Stinner · 5 years ago
  10. 48b069a bpo-39481: Implementation for PEP 585 (#18239) by Guido van Rossum · 5 years ago
  11. 87ec86c bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980) by Dong-hee Na · 5 years ago
  12. c98f87f bpo-37207: Use _PyArg_CheckPositional() for tuple vectorcall (GH-18986) by Dong-hee Na · 5 years ago
  13. c81609e Fix a possible refleak in tupleobject.c (GH-19018) by Hai Shi · 5 years ago
  14. 9ee88cd bpo-37207: Use PEP 590 vectorcall to speed up tuple() (GH-18936) by Dong-hee Na · 5 years ago
  15. 5572870 bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809) by Andy Lester · 5 years ago
  16. dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 5 years ago
  17. a93c51e bpo-39573: Use Py_REFCNT() macro (GH-18388) by Victor Stinner · 5 years ago
  18. 49932fe bpo-39542: Simplify _Py_NewReference() (GH-18332) by Victor Stinner · 6 years ago
  19. c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 6 years ago
  20. 755d4ef Correct overflow check in PyTuple_New() (GH-14838) by Sergey Fedoseev · 6 years ago
  21. 60bd1f8 bpo-36030: Fix a possible segfault in PyTuple_New() (GH-15670) by Zackery Spytz · 6 years ago
  22. bed4817 Make PyXXX_Fini() functions private (GH-15531) by Victor Stinner · 6 years ago
  23. 4fa10dd bpo-36030: Improve performance of some tuple operations (GH-12052) by Sergey Fedoseev · 6 years ago
  24. 18b711c bpo-37648: Fixed minor inconsistency in some __contains__. (GH-14904) by Serhiy Storchaka · 6 years ago
  25. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 6 years ago
  26. 331a6a5 bpo-36763: Implement the PEP 587 (GH-13592) by Victor Stinner · 6 years ago
  27. 14514d9 bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375) by Zackery Spytz · 6 years ago
  28. 351c674 bpo-35983: skip trashcan for subclasses (GH-11841) by Jeroen Demeyer · 6 years ago
  29. 234531b bpo-36030: Add _PyTuple_FromArray() function (GH-11954) by Sergey Fedoseev · 6 years ago
  30. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 7 years ago
  31. bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) by Victor Stinner · 7 years ago
  32. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 7 years ago
  33. e281f7d bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271) by Victor Stinner · 7 years ago
  34. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 7 years ago
  35. 49c75a8 bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152) by Pablo Galindo · 7 years ago
  36. aeb1be5 bpo-34751: improved hash function for tuples (GH-9471) by jdemeyer · 7 years ago
  37. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 7 years ago
  38. 55edd0c bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030) by Siddhesh Poyarekar · 7 years ago
  39. 745dc65 closes bpo-32898: Fix debug build crash with COUNT_ALLOCS (GH-5800) by Eddie Elizondo · 7 years ago
  40. c3d9508 bpo-32746: Fix multiple typos (GH-5144) by Leo Arias · 8 years ago
  41. 1fb72d2 bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570) by Serhiy Storchaka · 8 years ago
  42. 25420fe bpo-32030: Add more options to _PyCoreConfig (#4485) by Victor Stinner · 8 years ago
  43. e8b1965 bpo-23699: Use a macro to reduce boilerplate code in rich comparison functions (GH-793) by stratakis · 8 years ago
  44. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 8 years ago
  45. b879fe8 Expand the PySlice_GetIndicesEx macro. (#1023) by Serhiy Storchaka · 8 years ago
  46. d4edfc9 bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887) by Serhiy Storchaka · 8 years ago
  47. 0b56159 bpo-20186: Convert tuple object implementation to Argument Clinic. (#614) by Serhiy Storchaka · 8 years ago
  48. 98e80c2 bpo-29737: Optimize concatenating with empty tuple. (#524) by Serhiy Storchaka · 8 years ago
  49. 2e56424 bpo-29695: Remove bad keyword parameters in int(), bool(), float(), list() and tuple(). (#518) by Serhiy Storchaka · 8 years ago
  50. 58d23e6 bpo-29695: Deprecated using bad named keyword arguments in builtings: (#486) by Serhiy Storchaka · 8 years ago
  51. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 9 years ago
  52. b93d863 Issue #1621: Avoid signed overflow in list and tuple operations by Martin Panter · 9 years ago
  53. 7e160ce Issue #23034: The output of a special Python build with defined COUNT_ALLOCS, by Serhiy Storchaka · 9 years ago
  54. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
  55. ab479c4 Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 9 years ago
  56. fbb1c5e Issue #26494: Fixed crash on iterating exhausting iterators. by Serhiy Storchaka · 9 years ago
  57. 1ed017a Issue #20440: Cleaning up the code by using Py_SETREF and Py_CLEAR. by Serhiy Storchaka · 10 years ago
  58. 63afdaa Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 10 years ago
  59. a654510 Issue #23629: Fix the default __sizeof__ implementation for variable-sized objects. by Antoine Pitrou · 10 years ago
  60. 049e509 Issue #22207: Fix "comparison between signed and unsigned integers" warning in by Victor Stinner · 11 years ago
  61. ffff144 Issue #22077: Improve index error messages for bytearrays, bytes, lists, and by Terry Jan Reedy · 11 years ago
  62. c5cc501 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 11 years ago
  63. 25dded0 Make the various iterators' "setstate" sliently and consistently clip the by Kristján Valur Jónsson · 11 years ago
  64. dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
  65. 505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
  66. 88a9cd9 Issue #19513: repr(tuple) now uses _PyUnicodeWriter for better performances by Victor Stinner · 12 years ago
  67. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 12 years ago
  68. 7660b88 Issue #9566: More long/Py_ssize_t fixes in tuple and list iterators (it_index) by Victor Stinner · 12 years ago
  69. 2199c38 Issue #9566: Fix a compiler warning in tupleiter_setstate() on Windows x64 by Victor Stinner · 12 years ago
  70. a2d5698 Issuse #17932: Fix an integer overflow issue on Windows 64-bit in tuple by Victor Stinner · 12 years ago
  71. 34bdeb5 Add a comment about *not* caching the hash value. Issue #9685 suggested to memorize the hash value, but the feature request was rejected because no speed ups were found. by Christian Heimes · 13 years ago
  72. c2176e4 Fix the internals of our hash functions to used unsigned values during hash by Gregory P. Smith · 13 years ago
  73. 27cbcd6 Fix the internals of our hash functions to used unsigned values during hash by Gregory P. Smith · 13 years ago
  74. c04ddff Issue #16096: Fix several occurrences of potential signed integer overflow. Thanks Serhiy Storchaka. by Mark Dickinson · 13 years ago
  75. c4fe3fe PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak. by Christian Heimes · 13 years ago
  76. d5a8804 PyTuple_Pack() was missing va_end() in its error branch which lead to a resource leak. by Christian Heimes · 13 years ago
  77. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 13 years ago
  78. a701388 Rename _PyIter_GetBuiltin to _PyObject_GetBuiltin, and do not include it in the stable ABI. by Antoine Pitrou · 13 years ago
  79. 31668b8 Issue #14288: Serialization support for builtin iterators. by Kristján Valur Jónsson · 13 years ago
  80. d0acb41 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 13 years ago
  81. 0197ff9 Issue #14387: Do not include accu.h from Python.h. by Antoine Pitrou · 13 years ago
  82. f5b62a9 Consolidate the occurrances of the prime used as the multiplier when hashing. by Gregory P. Smith · 14 years ago
  83. 63e6c32 Consolidate the occurrances of the prime used as the multiplier when hashing by Gregory P. Smith · 14 years ago
  84. 9589ab1 Revert "Accept None as start and stop parameters for list.index() and tuple.index()" by Petri Lehtinen · 14 years ago
  85. ebfaabd Revert "Accept None as start and stop parameters for list.index() and tuple.index()" by Petri Lehtinen · 14 years ago
  86. 8e9f6c4 Accept None as start and stop parameters for list.index() and tuple.index(). by Petri Lehtinen · 14 years ago
  87. c2f0a46 Accept None as start and stop parameters for list.index() and tuple.index() by Petri Lehtinen · 14 years ago
  88. c61c8d7 Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 14 years ago
  89. eeb7eea Issue #12911: Fix memory consumption when calculating the repr() of huge tuples or lists. by Antoine Pitrou · 14 years ago
  90. 57e683e Issue #1621: Fix undefined behaviour in bytes.__hash__, str.__hash__, tuple.__hash__, frozenset.__hash__ and set indexing operations. by Mark Dickinson · 14 years ago
  91. dfc80e3 Replace Py_NotImplemented returns with the macro form Py_RETURN_NOTIMPLEMENTED. by Brian Curtin · 14 years ago
  92. b94767f Issue #8914: fix various warnings from the Clang static analyzer v254. by Brett Cannon · 14 years ago
  93. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 15 years ago
  94. 8035bc5 follow up to #9778: define and use an unsigned hash type by Benjamin Peterson · 15 years ago
  95. 8f67d08 make hashes always the size of pointers; introduce Py_hash_t #9778 by Benjamin Peterson · 15 years ago
  96. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 15 years ago
  97. 7f807b7 Merged revisions 78515-78516,78522 via svnmerge from by Ezio Melotti · 15 years ago
  98. 6b7dfc9 Merged revisions 76763 via svnmerge from by Antoine Pitrou · 16 years ago
  99. acc5d6b Merged revisions 70550 via svnmerge from by Antoine Pitrou · 16 years ago
  100. 3a652b1 Merged revisions 70546 via svnmerge from by Antoine Pitrou · 16 years ago