1. a9f05d6 bpo-37032: Add CodeType.replace() method (GH-13542) by Victor Stinner · 6 years ago
  2. c95c93d bpo-20285: Improve help docs for object (GH-4759) by Cheryl Sabella · 6 years ago
  3. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 6 years ago
  4. 6bc5917 bpo-35091: Objects/listobject.c: Replace overflow checks in gallop fu… (GH-10202) by Alexey Izbyshev · 6 years ago
  5. 77aa396 bpo-36907: fix refcount bug in _PyStack_UnpackDict() (GH-13381) by Jeroen Demeyer · 6 years ago
  6. 53d378c closes bpo-36951: Correct some types in the type_members struct in typeobject.c. (GH-13403) by Zackery Spytz · 6 years ago
  7. a5119e7 bpo-36957: Add _PyLong_Rshift() and _PyLong_Lshift(). (GH-13416) by Serhiy Storchaka · 6 years ago
  8. 27ee0f8 Fix couple of dead code paths (GH-7418) by David Carlier · 6 years ago
  9. 871ff77 bpo-36763: Add _PyInitError functions (GH-13395) by Victor Stinner · 6 years ago
  10. b16b4e4 bpo-36763: Add PyMemAllocatorName (GH-13387) by Victor Stinner · 6 years ago
  11. a8b4694 Fix typo in _PyMethodDef_RawFastCallKeywords error message (GH-13343) by Jeroen Demeyer · 6 years ago
  12. 14514d9 bpo-36946: Fix possible signed integer overflow when handling slices. (GH-13375) by Zackery Spytz · 6 years ago
  13. c96be81 bpo-36900: Replace global conf vars with config (GH-13299) by Victor Stinner · 6 years ago
  14. f0be4bb bpo-27987: pymalloc: align by 16bytes on 64bit platform (GH-12850) by Inada Naoki · 6 years ago
  15. 351c674 bpo-35983: skip trashcan for subclasses (GH-11841) by Jeroen Demeyer · 6 years ago
  16. a2fedd8 bpo-36869: fix warning of unused variables (GH-13182) by Emmanuel Arias · 6 years ago
  17. 0613c1e Fix a possible crash due to PyType_FromSpecWithBases() (GH-10304) by Zackery Spytz · 6 years ago
  18. 3aca40d closes bpo-36861: Update Unicode database to 12.1.0. (GH-13214) by Benjamin Peterson · 6 years ago
  19. 96aeaec bpo-36793: Remove unneeded __str__ definitions. (GH-13081) by Serhiy Storchaka · 6 years ago
  20. 9646630 bpo-36766: Typos in docs and code comments (GH-13116) by penguindustin · 6 years ago
  21. 1a2252e bpo-36594: Fix incorrect use of %p in format strings (GH-12769) by Zackery Spytz · 6 years ago
  22. 8b1271b Only count number of members once (#12691) by Eddie Elizondo · 6 years ago
  23. 22c5263 bpo:34848 : Correct an incorrect docstring for range().index method (GH-9877) by Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) · 6 years ago
  24. 709d23d bpo-36775: _PyCoreConfig only uses wchar_t* (GH-13062) by Victor Stinner · 6 years ago
  25. 43fc3bb bpo-36775: Add _PyUnicode_InitEncodings() (GH-13057) by Victor Stinner · 6 years ago
  26. e251095 bpo-36775: Add _Py_FORCE_UTF8_FS_ENCODING macro (GH-13056) by Victor Stinner · 6 years ago
  27. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 6 years ago
  28. e0dcb85 bpo-36745: Fix a possible reference leak in PyObject_SetAttr() (GH-12993) by Zackery Spytz · 6 years ago
  29. 7abb6c0 bpo-36669: add matmul support to weakref.proxy (GH-12932) by Mark Dickinson · 6 years ago
  30. 6fec905 bpo-36642: make unicodedata const (GH-12855) by Inada Naoki · 6 years ago
  31. e8f9acf bpo-36611: Disable serialno field of debug memory allocators (#12796) by Victor Stinner · 6 years ago
  32. 0fc91ee bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803) by Victor Stinner · 6 years ago
  33. b015fc8 bpo-36549: str.capitalize now titlecases the first character instead of uppercasing it (GH-12804) by Kingsley M · 6 years ago
  34. 9e4f2f3 bpo-20180: Use argument clinic for dict.pop() and dict.popitem() (GH-12792) by Inada Naoki · 6 years ago
  35. 4c409be bpo-36389: Change PyMem_SetupDebugHooks() constants (GH-12782) by Victor Stinner · 6 years ago
  36. 2b00db6 bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (GH-12770) by Victor Stinner · 6 years ago
  37. f66e336 bpo-29202: improve dict iteration (GH-11900) by Cheryl Sabella · 6 years ago
  38. b8311cf bpo-36473: add maximum iteration check for dict .values() and .items() (GH-12619) by Thomas Perl · 6 years ago
  39. e6a0e80 fix confusing argument name in unicodeobject.c (GH-12653) by Max Bernstein · 6 years ago
  40. 62f9588 bpo-36026: make descr error message consistent (GH-11930) by Inada Naoki · 6 years ago
  41. 7a465cb bpo-24214: Fixed the UTF-8 incremental decoder. (GH-12603) by Serhiy Storchaka · 6 years ago
  42. 796cc6e bpo-36452: dictiter: track maximum iteration count (GH-12596) by Thomas Perl · 6 years ago
  43. 364f0b0 bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661) by Eddie Elizondo · 6 years ago
  44. 871309c bpo-36433: fix confusing error messages in classmethoddescr_call (GH-12556) by Inada Naoki · 6 years ago
  45. dd5417a bpo-36218: Fix handling of heterogeneous values in list.sort (GH-12209) by Rémi Lapeyre · 6 years ago
  46. 3d07c1e bpo-36412: fix a possible crash in dictobject.c's new_dict() (GH-12519) by Zackery Spytz · 6 years ago
  47. 93e8012 bpo-36398: Fix a possible crash in structseq_repr(). (GH-12492) by Zackery Spytz · 6 years ago
  48. c1e2c28 bpo-36312: Fix decoders for some code pages. (GH-12369) by Serhiy Storchaka · 6 years ago
  49. c70ab02 bpo-36365: Rewrite structseq_repr() using _PyUnicodeWriter (GH-12440) by Victor Stinner · 6 years ago
  50. fecc4f2 bpo-36356: Release Unicode interned strings on Valgrind (#12431) by Victor Stinner · 6 years ago
  51. 5f9cf23 bpo-36301: Error if decoding pybuilddir.txt fails (GH-12422) by Victor Stinner · 6 years ago
  52. a10d426 bpo-36292: Mark unreachable code as such in long bitwise ops (GH-12333) by stratakis · 6 years ago
  53. 2ddc7f6 bpo-30040: optimize inserting into empty dict (GH-12307) by Inada Naoki · 6 years ago
  54. 6a16b18 bpo-36297: remove "unicode_internal" codec (GH-12342) by Inada Naoki · 6 years ago
  55. c11183c bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (gh-12359) by Eric Snow · 6 years ago
  56. 3191391 bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-12058) by Serhiy Storchaka · 6 years ago
  57. d53fe5f bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) by Serhiy Storchaka · 6 years ago
  58. f2a1867 bpo-30040: new empty dict uses key-sharing dict (GH-1080) by Inada Naoki · 6 years ago
  59. 8b91eda bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH-12252) by sth · 6 years ago
  60. 738c19f closes bpo-33376: Update to Unicode 12.0.0. (GH-12256) by Benjamin Peterson · 6 years ago
  61. c656e25 bpo-36142: Add _PyPreConfig_SetAllocator() (GH-12187) by Victor Stinner · 6 years ago
  62. a9df651 bpo-36142: Add _PyMem_GetDebugAllocatorsName() (GH-12185) by Victor Stinner · 6 years ago
  63. 359a2f3 bpo-33012: Fix compilation warnings in memoryobject.c and _collectionsmodule.c (GH-12179) by Stéphane Wirtel · 6 years ago
  64. b727239 closes bpo-36188: Clean up 'unbound' method left-overs. (GH-12169) by Martijn Pieters · 6 years ago
  65. 4d61e6e Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) (GH-12159) by Victor Stinner · 6 years ago
  66. bcfa450 bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (#12003) by Eric Snow · 6 years ago
  67. d5a551c closes bpo-36115: Fix some reference leaks in typeobject.c. (GH-12045) by Benjamin Peterson · 6 years ago
  68. f1b9abe bpo-36030: Remove _PyStack_AsTuple() and _PyStack_AsTupleSlice() (GH-12032) by Sergey Fedoseev · 6 years ago
  69. 234531b bpo-36030: Add _PyTuple_FromArray() function (GH-11954) by Sergey Fedoseev · 6 years ago
  70. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 6 years ago
  71. 6a44f6e bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952) by Serhiy Storchaka · 6 years ago
  72. ea6207d bpo-36063: Minor performance tweak in long_divmod(). (GH-11915) by Sergey Fedoseev · 6 years ago
  73. ebc793d bpo-33989: Ensure that ms.key_compare is always initialized in list_sort_impl(). (GH-8710) by Zackery Spytz · 6 years ago
  74. ef1b88b bpo-36062: Minor speed-up for list slicing and copying. (GH-11967) by Sergey Fedoseev · 6 years ago
  75. d8b9e1f bpo-36012: Avoid linear slot search for non-dunder methods (GH-11907) by Stefan Behnel · 6 years ago
  76. 5105483 bpo-31506: Clarify error messages for object.__new__ and object.__init__ (GH-11641) by Sanyam Khurana · 6 years ago
  77. ac28147 bpo-35992: Use PySequence_GetItem only if sq_item is not NULL (GH-11857) by Ivan Levkivskyi · 6 years ago
  78. dcb68f4 bpo-35961: Fix a crash in slice_richcompare() (GH-11830) by Victor Stinner · 6 years ago
  79. df8d2cd bpo-35911: add cell constructor (GH-11771) by Pierre Glaser · 6 years ago
  80. d08ea70 bpo-35845: Add order={'C', 'F', 'A'} parameter to memoryview.tobytes(). (#11730) by Stefan Krah · 6 years ago
  81. 8f59ee0 bpo-35224: PEP 572 Implementation (#10497) by Emily Morehouse · 6 years ago
  82. ab67281 bpo-35713: Reorganize sys module initialization (GH-11658) by Victor Stinner · 6 years ago
  83. 6d43f6f bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650) by Victor Stinner · 6 years ago
  84. bf4ac2d bpo-35713: Rework Python initialization (GH-11647) by Victor Stinner · 6 years ago
  85. d586ccb bpo-35552: Fix reading past the end in PyUnicode_FromFormat() and PyBytes_FromFormat(). (GH-11276) by Serhiy Storchaka · 6 years ago
  86. 44cc482 bpo-33817: Fix _PyBytes_Resize() for empty bytes object. (GH-11516) by Serhiy Storchaka · 6 years ago
  87. 2a39d25 bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520) by Serhiy Storchaka · 6 years ago
  88. 4fa9591 bpo-35582: Argument Clinic: inline parsing code for positional parameters. (GH-11313) by Serhiy Storchaka · 6 years ago
  89. 3f7983a bpo-35560: Remove assertion from format(float, "n") (GH-11288) by Xtreak · 6 years ago
  90. a1d1425 bpo-35636: Remove redundant check in unicode_hash(). (GH-11402) by animalize · 6 years ago
  91. f8b5344 closes bpo-35623: Fix integer overflow when sorting large lists (GH-11380) by sth · 6 years ago
  92. 0e5f771 bpo-33234: Simplify list_preallocate_exact() (GH-11220) by Sergey Fedoseev · 6 years ago
  93. 32d96a2 bpo-23867: Argument Clinic: inline parsing code for a single positional parameter. (GH-9689) by Serhiy Storchaka · 6 years ago
  94. e7eed78 Clarify the behavior of the staticmethod builtin (GH-4362) by Jess Shapiro · 6 years ago
  95. 6326278 bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438) by Xtreak · 6 years ago
  96. 842acaa bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175) by Zackery Spytz · 6 years ago
  97. e2af34f bpo-35504: Fix a SystemError when delete the characters_written attribute of an OSError. (GH-11172) by Serhiy Storchaka · 6 years ago
  98. 7211d30 Remove an unused variable after bpo-35444. (GH-11117) by Serhiy Storchaka · 6 years ago
  99. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 6 years ago
  100. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 6 years ago