1. d5a551c closes bpo-36115: Fix some reference leaks in typeobject.c. (GH-12045) by Benjamin Peterson · 6 years ago
  2. f1b9abe bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032) by Sergey Fedoseev · 6 years ago
  3. 234531b bpo-36030: Add _PyTuple_FromArray() function (GH-11954) by Sergey Fedoseev · 6 years ago
  4. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 6 years ago
  5. 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 6 years ago
  6. ea6207d bpo-36063: Minor performance tweak in long_divmod(). (GH-11915) by Sergey Fedoseev · 6 years ago
  7. ebc793d bpo-33989: Ensure that ms.key_compare is always initialized in list_sort_impl(). (GH-8710) by Zackery Spytz · 6 years ago
  8. ef1b88b bpo-36062: Minor speed-up for list slicing and copying. (GH-11967) by Sergey Fedoseev · 6 years ago
  9. d8b9e1f bpo-36012: Avoid linear slot search for non-dunder methods (GH-11907) by Stefan Behnel · 6 years ago
  10. 5105483 bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-11641) by Sanyam Khurana · 6 years ago
  11. ac28147 bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857) by Ivan Levkivskyi · 6 years ago
  12. dcb68f4 bpo-35961: Fix a crash in slice_richcompare() (GH-11830) by Victor Stinner · 6 years ago
  13. df8d2cd bpo-35911: add cell constructor (GH-11771) by Pierre Glaser · 6 years ago
  14. d08ea70 bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730) by Stefan Krah · 6 years ago
  15. 8f59ee0 bpo-35224: PEP 572 Implementation (#10497) by Emily Morehouse · 6 years ago
  16. ab67281 bpo-35713: Reorganize sys module initialization (GH-11658) by Victor Stinner · 6 years ago
  17. 6d43f6f bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650) by Victor Stinner · 6 years ago
  18. bf4ac2d bpo-35713: Rework Python initialization (GH-11647) by Victor Stinner · 6 years ago
  19. d586ccb bpo-35552: Fix reading past the end in PyUnicode_FromFormat() and PyBytes_FromFormat(). (GH-11276) by Serhiy Storchaka · 6 years ago
  20. 44cc482 bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516) by Serhiy Storchaka · 6 years ago
  21. 2a39d25 bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520) by Serhiy Storchaka · 6 years ago
  22. 4fa9591 bpo-35582: Argument Clinic: inline parsing code for positional parameters. (GH-11313) by Serhiy Storchaka · 6 years ago
  23. 3f7983a bpo-35560: Remove assertion from format(float, "n") (GH-11288) by Xtreak · 6 years ago
  24. a1d1425 bpo-35636: Remove redundant check in unicode_hash(). (GH-11402) by animalize · 6 years ago
  25. f8b5344 closes bpo-35623: Fix integer overflow when sorting large lists (GH-11380) by sth · 6 years ago
  26. 0e5f771 bpo-33234: Simplify list_preallocate_exact() (GH-11220) by Sergey Fedoseev · 6 years ago
  27. 32d96a2 bpo-23867: Argument Clinic: inline parsing code for a single positional parameter. (GH-9689) by Serhiy Storchaka · 6 years ago
  28. e7eed78 Clarify the behavior of the staticmethod builtin (GH-4362) by Jess Shapiro · 6 years ago
  29. 6326278 bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438) by Xtreak · 6 years ago
  30. 842acaa bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175) by Zackery Spytz · 6 years ago
  31. e2af34f bpo-35504: Fix a SystemError when delete the characters_written attribute of an OSError. (GH-11172) by Serhiy Storchaka · 6 years ago
  32. 7211d30 Remove an unused variable after bpo-35444. (GH-11117) by Serhiy Storchaka · 6 years ago
  33. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 6 years ago
  34. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 6 years ago
  35. 4c49da0 bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) by Zackery Spytz · 6 years ago
  36. eeb719e bpo-35365: Use a wchar_t* buffer in the code page decoder. (GH-10837) by Serhiy Storchaka · 6 years ago
  37. 4013c17 bpo-35372: Fix the code page decoder for input > 2 GiB. (GH-10848) by Serhiy Storchaka · 6 years ago
  38. 9890520 Fix compiler warning in structseq_repr() (GH-10841) by Victor Stinner · 6 years ago
  39. bde9d6b bpo-34523, bpo-35322: Fix unicode_encode_locale() (GH-10759) by Victor Stinner · 6 years ago
  40. 1c60715 bpo-33012: Fix more invalid function cast warnings with gcc 8. (GH-10751) by Serhiy Storchaka · 6 years ago
  41. d4f9cf5 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Serhiy Storchaka · 6 years ago
  42. 163403a bpo-33954: Fix compiler warning in _PyUnicode_FastFill() (GH-10737) by Victor Stinner · 6 years ago
  43. 62be742 bpo-33012: Fix invalid function cast warnings with gcc 8. (GH-6749) by Serhiy Storchaka · 6 years ago
  44. 8152402 bpo-33012: Fix signatures of METH_NOARGS funstions. (GH-10736) by Serhiy Storchaka · 6 years ago
  45. 4a934d4 bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. (GH-6748) by Serhiy Storchaka · 6 years ago
  46. 59423e3 bpo-33954: Fix _PyUnicode_InsertThousandsGrouping() (GH-10623) by Victor Stinner · 6 years ago
  47. ec13b93 bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705) by Victor Stinner · 6 years ago
  48. b509d52 bpo-35059: PyObject_INIT() casts to PyObject* (GH-10674) by Victor Stinner · 6 years ago
  49. 2cf5d32 bpo-9263: Fix _PyObject_Dump() for freed object (#10661) by Victor Stinner · 6 years ago
  50. a42de74 bpo-35059: Cast void* to PyObject* (GH-10650) by Victor Stinner · 6 years ago
  51. b37672d bpo-35059: Cleanup usage of Python macros (GH-10648) by Victor Stinner · 6 years ago
  52. f1d002c bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642) by Victor Stinner · 6 years ago
  53. bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) by Victor Stinner · 6 years ago
  54. 062a57b bpo-35269: Fix a possible segfault involving a newly-created coroutine (GH-10585) by Zackery Spytz · 6 years ago
  55. bfb855b bpo-34784: Implement correct cleanup in PyStructSequence new implementation (GH-10536) by Pablo Galindo · 6 years ago
  56. a757649 bpo-35230: dict: Remove some macros (GH-10513) by INADA Naoki · 6 years ago
  57. 746b2d3 bpo-35214: Fix OOB memory access in unicode escape parser (GH-10506) by Gregory P. Smith · 6 years ago
  58. 474eedf bpo-34784: Fix PyStructSequence_NewType with heap-allocated StructSequence (GH-9665) by Eddie Elizondo · 6 years ago
  59. 3015fb8 bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) by Gregory P. Smith · 6 years ago
  60. e6c77d8 Disable getc_unlocked() with MemorySanitizer. (GH-10499) by Gregory P. Smith · 6 years ago
  61. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  62. fd3a91c closes bpo-35204: Disable thread and memory sanitizers for address_in_range(). (GH-10442) by Alexey Izbyshev · 6 years ago
  63. f9ec1b9 Neaten the code without any algorithmic change. (GH-10466) by Raymond Hettinger · 6 years ago
  64. d17a693 bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434) by Victor Stinner · 6 years ago
  65. cf5863f Optimize set.pop() to advance a pointer instead of indexing. (GH-10429) by Raymond Hettinger · 6 years ago
  66. 9fc57a3 bpo-35081: Add pycore_fileutils.h (GH-10371) by Victor Stinner · 6 years ago
  67. 6531bf6 bpo-33462: Add __reversed__ to dict and dict views (GH-6827) by Rémi Lapeyre · 6 years ago
  68. e281f7d bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271) by Victor Stinner · 6 years ago
  69. 50b4857 bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) by Victor Stinner · 6 years ago
  70. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  71. 2be00d9 bpo-35081: Move Py_BUILD_CORE code to internal/mem.h (GH-10249) by Victor Stinner · 6 years ago
  72. c9a6168 Fix a possible crash in range.__reversed__(). (GH-10252) by Zackery Spytz · 6 years ago
  73. 0353b4e bpo-33138: Change standard error message for non-pickleable and non-copyable types. (GH-6239) by Serhiy Storchaka · 6 years ago
  74. 9204fb8 bpo-35081: Cleanup pystate.c and pystate.h (GH-10240) by Victor Stinner · 6 years ago
  75. 3c09dca bpo-35059: Convert _Py_Dealloc() to static inline function (GH-10223) by Victor Stinner · 6 years ago
  76. 3e429dc bpo-33237: Improve AttributeError message for partially initialized module. (GH-6398) by Serhiy Storchaka · 6 years ago
  77. 372d705 bpo-33234 Improve list() pre-sizing for inputs with known lengths (GH-9846) by Pablo Galindo · 6 years ago
  78. 49c75a8 bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152) by Pablo Galindo · 6 years ago
  79. aeb1be5 bpo-34751: improved hash function for tuples (GH-9471) by jdemeyer · 6 years ago
  80. 50fe3f8 bpo-9263: _PyXXX_CheckConsistency() use _PyObject_ASSERT() (GH-10108) by Victor Stinner · 6 years ago
  81. 0862505 bpo-9263: Use _PyObject_ASSERT() in typeobject.c (GH-10111) by Victor Stinner · 6 years ago
  82. 2470204 bpo-9263: Use _PyObject_ASSERT() in object.c (GH-10110) by Victor Stinner · 6 years ago
  83. b4435e2 bpo-35059: Convert PyObject_INIT() to function (GH-10077) by Victor Stinner · 6 years ago
  84. 3ec9af7 bpo-9263: _Py_NegativeRefcount() use _PyObject_AssertFailed() (GH-10109) by Victor Stinner · 6 years ago
  85. 626bff8 bpo-9263: Dump Python object on GC assertion failure (GH-10062) by Victor Stinner · 6 years ago
  86. 18618e65 bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093) by Victor Stinner · 6 years ago
  87. 9e00e80 bpo-35053: Enhance tracemalloc to trace free lists (GH-10063) by Victor Stinner · 6 years ago
  88. c46db92 bpo-30863: Rewrite PyUnicode_AsWideChar() and PyUnicode_AsWideCharString(). (GH-2599) by Serhiy Storchaka · 6 years ago
  89. 82af0b6 bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) by Victor Stinner · 6 years ago
  90. 5a95ba2 Fix issue 34551 - remove redundant store (#9009) by Eric Lippert · 6 years ago
  91. 2c2044e bpo-34984: Improve error messages for bytes and bytearray constructors. (GH-9874) by Serhiy Storchaka · 6 years ago
  92. 914f9a0 bpo-34973: Fix crash in bytes constructor. (GH-9841) by Serhiy Storchaka · 6 years ago
  93. a5259fb bpo-34574: Prevent OrderedDict iterators from exhaustion during pickling. (GH-9051) by Sergey Fedoseev · 6 years ago
  94. 6395844 bpo-34573: Simplify __reduce__() of set and dict iterators. (GH-9050) by Sergey Fedoseev · 6 years ago
  95. 6f17e51 bpo-33712: OrderedDict only creates od_fast_nodes cache if needed (GH-7349) by Serhiy Storchaka · 6 years ago
  96. b2e2025 bpo-33073: Rework int.as_integer_ratio() implementation (GH-9303) by Serhiy Storchaka · 6 years ago
  97. e890421 bpo-34974: Do not replace unexpected errors in bytes() and bytearray(). (GH-9852) by Serhiy Storchaka · 6 years ago
  98. a4b48f1 bpo-34940: Fix the error handling in _check_for_legacy_statements(). (GH-9764) by Zackery Spytz · 6 years ago
  99. f1aa8ae Micro-optimize list index range checks (GH-9784) by Raymond Hettinger · 6 years ago
  100. fc8205c Add missing closing quote and trailing period in str.isidentifier() docstring (GH-9756) by Emanuele Gaifas · 6 years ago