1. 17b4733 bpo-40130: _PyUnicode_AsKind() should not be exported. (GH-19265) by Serhiy Storchaka · 5 years ago
  2. ce10554 bpo-37207: Use vectorcall for list() (GH-18928) by Petr Viktorin · 5 years ago
  3. 62d21c9 bpo-39943: Properly const the pointers in dictkeys_get_index (GH-19170) by Andy Lester · 5 years ago
  4. 87d3b9d bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) by Victor Stinner · 5 years ago
  5. 05e4a29 bpo-40024: Add PyModule_AddType() helper function (GH-19088) by Dong-hee Na · 5 years ago
  6. 1c60567 bpo-37207: Use PEP 590 vectorcall to speed up frozenset() (GH-19053) by Dong-hee Na · 5 years ago
  7. 2fe815e bpo-38373: Change list overallocating strategy. (GH-18952) by Serhiy Storchaka · 5 years ago
  8. 5b1ef20 bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738) by Victor Stinner · 5 years ago
  9. 6ff79f65 bpo-37207: Use PEP 590 vectorcall to speed up set() constructor (GH-19019) by Dong-hee Na · 5 years ago
  10. 87ec86c bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980) by Dong-hee Na · 5 years ago
  11. c98f87f bpo-37207: Use _PyArg_CheckPositional() for tuple vectorcall (GH-18986) by Dong-hee Na · 5 years ago
  12. c81609e Fix a possible refleak in tupleobject.c (GH-19018) by Hai Shi · 5 years ago
  13. 3a8c562 Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985) by Inada Naoki · 5 years ago
  14. c7ad974 bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659) by Inada Naoki · 5 years ago
  15. ff4584c bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978) by Victor Stinner · 5 years ago
  16. 6d674a1 bpo-36144: OrderedDict Union (PEP 584) (#18967) by Brandt Bucher · 5 years ago
  17. 38965ec bpo-39947: Hide implementation detail of trashcan macros (GH-18971) by Victor Stinner · 5 years ago
  18. 9ee88cd bpo-37207: Use PEP 590 vectorcall to speed up tuple() (GH-18936) by Dong-hee Na · 5 years ago
  19. 224481a bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972) by Victor Stinner · 5 years ago
  20. c7d2d69 bpo-39884: Add method name in "bad call flags" error (GH-18944) by Victor Stinner · 5 years ago
  21. 51796e5 Update some www.unicode.org URLs to use HTTPS. (GH-18912) by Benjamin Peterson · 5 years ago
  22. 051b9d0 closes bpo-39926: Update Unicode to 13.0.0. (GH-18910) by Benjamin Peterson · 5 years ago
  23. eebaa9b bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release mode. (GH-16329) by Serhiy Storchaka · 5 years ago
  24. e5ccc94 bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is called with invalid base. (GH-18863) by Serhiy Storchaka · 5 years ago
  25. 413f013 bpo-39904: Move handling of one-argument call of type() from type.__new__() to type.__call__(). (GH-18852) by Serhiy Storchaka · 5 years ago
  26. 4663f66 bpo-36144: Update MappingProxyType with PEP 584's operators (#18814) by Brandt Bucher · 5 years ago
  27. 9e5d30c bpo-39882: Py_FatalError() logs the function name (GH-18819) by Victor Stinner · 5 years ago
  28. 5572870 bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809) by Andy Lester · 5 years ago
  29. 9a73705 bpo-39873: Cleanup _PyObject_CheckConsistency() (GH-18807) by Victor Stinner · 5 years ago
  30. 1fb5a9f bpo-39873: PyObject_Init() uses PyObject_INIT() (GH-18804) by Victor Stinner · 5 years ago
  31. dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 5 years ago
  32. 469325c bpo-35712: Make using NotImplemented in a boolean context issue a deprecation warning (GH-13195) by MojoVampire · 5 years ago
  33. 0c2b509 bpo-39778: Don't traverse weak-reference lists OrderedDict's tp_traverse and tp_clear (GH-18749) by Pablo Galindo · 5 years ago
  34. 02a4d57 bpo-39087: Optimize PyUnicode_AsUTF8AndSize() (GH-18327) by Inada Naoki · 5 years ago
  35. be7ead6 bpo-39737: Remove code repitition in list_richcompare (GH-18638) by sweeneyde · 5 years ago
  36. eb8ac57 bpo-36144: Dictionary Union (PEP 584) (#12088) by Brandt Bucher · 5 years ago
  37. ee3bac4 Give proper credits for the memoryview implementation. (#18626) by Stefan Krah · 5 years ago
  38. 1c56f8f bpo-39382: Avoid dangling object use in abstract_issubclass() (GH-18530) by Yonatan Goldschmidt · 5 years ago
  39. 933fc53f closes bpo-39684: Combine two if/thens and squash uninit var warning. (GH-18565) by Andy Lester · 5 years ago
  40. 6e35da9 bpo-37207: Use vectorcall for range() (GH-18464) by Petr Viktorin · 5 years ago
  41. 24bba8c bpo-36347: stop using RESTRICTED constants (GH-12684) by Jeroen Demeyer · 5 years ago
  42. 3d235f5 bpo-39500: Fix compile warnings in unicodeobject.c (GH-18519) by Hai Shi · 5 years ago
  43. 1b55b65 bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) by Dong-hee Na · 5 years ago
  44. 9aeb0ef bpo-39573: Update clinic to use Py_IS_TYPE() function (GH-18507) by Dong-hee Na · 5 years ago
  45. 7386a70 closes bpo-39630: Update pointers to string literals to be const char *. (GH-18510) by Andy Lester · 5 years ago
  46. d905df7 bpo-39573: Add Py_IS_TYPE() function (GH-18488) by Dong-hee Na · 5 years ago
  47. 925dc7f bpo-39606: allow closing async generators that are already closed (GH-18475) by Nathaniel J. Smith · 5 years ago
  48. e9e7d28 bpo-35081: Move dtoa.h header to the internal C API (GH-18489) by Victor Stinner · 5 years ago
  49. 45876a9 bpo-35081: Move bytes_methods.h to the internal C API (GH-18492) by Victor Stinner · 5 years ago
  50. 95905ce bpo-39605: Remove a cast that causes a warning. (GH-18473) by Benjamin Peterson · 6 years ago
  51. e6be9b5 closes bpo-39605: Fix some casts to not cast away const. (GH-18453) by Andy Lester · 6 years ago
  52. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 6 years ago
  53. f3e7ea5 bpo-39500: Document PyUnicode_IsIdentifier() function (GH-18397) by Victor Stinner · 6 years ago
  54. 60ac6ed bpo-39573: Use Py_SET_SIZE() function (GH-18402) by Victor Stinner · 6 years ago
  55. b10dc3e bpo-39573: Add Py_SET_SIZE() function (GH-18400) by Victor Stinner · 6 years ago
  56. c65b320 bpo-39573: Use Py_TYPE() macro in object.c (GH-18398) by Victor Stinner · 6 years ago
  57. d2ec81a bpo-39573: Add Py_SET_TYPE() function (GH-18394) by Victor Stinner · 6 years ago
  58. 58ac700 bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392) by Victor Stinner · 6 years ago
  59. 0d76d2b bpo-39573: Use Py_TYPE() in abstract.c (GH-18390) by Victor Stinner · 6 years ago
  60. c86a112 bpo-39573: Add Py_SET_REFCNT() function (GH-18389) by Victor Stinner · 6 years ago
  61. a93c51e bpo-39573: Use Py_REFCNT() macro (GH-18388) by Victor Stinner · 6 years ago
  62. 58f4e1a bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368) by Victor Stinner · 6 years ago
  63. bf305cc Add PyInterpreterState.fs_codec.utf8 (GH-18367) by Victor Stinner · 6 years ago
  64. f58bd7c bpo-39542: Make PyObject_INIT() opaque in limited C API (GH-18363) by Victor Stinner · 6 years ago
  65. f16433a bpo-39543: Remove unused _Py_Dealloc() macro (GH-18361) by Victor Stinner · 6 years ago
  66. 40e547d bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346) by Victor Stinner · 6 years ago
  67. 850a4bd Restore PyObject_IsInstance() comment (GH-18345) by Victor Stinner · 6 years ago
  68. 49932fe bpo-39542: Simplify _Py_NewReference() (GH-18332) by Victor Stinner · 6 years ago
  69. 24e5ad4 Fixes in sorting descriptions (GH-18317) by Stefan Pochmann · 6 years ago
  70. c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 6 years ago
  71. 869c0c9 bpo-36051: Fix compiler warning. (GH-18325) by Inada Naoki · 6 years ago
  72. be8147b Fix 5-space indentation and trailing whitespace (GH-18311) by Mark Dickinson · 6 years ago
  73. 46874c2 bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) by Hai Shi · 6 years ago
  74. 8d49f7c bpo-39434: Improve float __floordiv__ performance and error message (GH-18147) by Dong-hee Na · 6 years ago
  75. 2a4903f bpo-38631: Add _Py_NO_RETURN to functions calling Py_FatalError() (GH-18278) by Victor Stinner · 6 years ago
  76. ec3c99c bpo-38631: Avoid Py_FatalError() in unicodeobject.c (GH-18281) by Victor Stinner · 6 years ago
  77. 2bf127d bpo-38631: Replace tp_new_wrapper() fatal error with SystemError (GH-18262) by Victor Stinner · 6 years ago
  78. 7a1f6c2 bpo-38631: Avoid Py_FatalError() in init_slotdefs() (GH-18263) by Victor Stinner · 6 years ago
  79. 5eb8bff bpo-38631: Replace Py_FatalError() with _PyObject_ASSERT_FAILED_MSG() (GH-18258) by Victor Stinner · 6 years ago
  80. 5428f48 Remove deadcode in _Py_inc_count() (GH-18257) by Victor Stinner · 6 years ago
  81. d07d9f4 bpo-36051: Drop GIL during large bytes.join() (GH-17757) by Bruce Merry · 6 years ago
  82. a278313 bpo-38631: Avoid Py_FatalError() in PyCode_New() (GH-18215) by Victor Stinner · 6 years ago
  83. 47ee8a6 bpo-38631: Avoid Py_FatalError() in _memory_release() (GH-18214) by Victor Stinner · 6 years ago
  84. a94c6b6 bpo-38631: Avoid Py_FatalError() in PyModule_Create2() (GH-18212) by Victor Stinner · 6 years ago
  85. 9e1ed51 bpo-39453: Add testcase for bpo-39453 (GH-18202) by Dong-hee Na · 6 years ago
  86. 4dbf2d8 bpo-39453: Make list.__contains__ hold strong references to avoid crashes (GH-18181) by Dong-hee Na · 6 years ago
  87. 14d80d0 bpo-39425: Fix list.count performance regression (GH-18119) by Dong-hee Na · 6 years ago
  88. 0d5eac8 closes bpo-39415: Remove unused codes from longobject.c complexobject.c floatobject.c. (GH-18105) by Dong-hee Na · 6 years ago
  89. 629023c bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099) by Victor Stinner · 6 years ago
  90. a96e06d bpo-39386: Prevent double awaiting of async iterator (GH-18081) by Andrew Svetlov · 6 years ago
  91. cd7db76 bpo-39372: Clean header files of declared interfaces with no implementations (GH-18037) by Pablo Galindo · 6 years ago
  92. c5b7900 bpo-31031: Unify duplicate bits_in_digit and bit_length (GH-2866) by Niklas Fiekas · 6 years ago
  93. 4b66fa6 bpo-39200: Correct the error message for range() empty constructor (GH-17813) by Pablo Galindo · 6 years ago
  94. 22424c0 Document CodeType.replace (GH-17776) by Anthony Sottile · 6 years ago
  95. dfef986 bpo-38588: Optimize list comparison. (GH-17766) by Inada Naoki · 6 years ago
  96. 2d5bf56 bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCompareBool (GH-17734) by Dong-hee Na · 6 years ago
  97. d9e561d bpo-38610: Fix possible crashes in several list methods (GH-17022) by Zackery Spytz · 6 years ago
  98. c0052f3 closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (GH-17702) by Batuhan Taşkaya · 6 years ago
  99. 630c8df bpo-38858: Small integer per interpreter (GH-17315) by Victor Stinner · 6 years ago
  100. cb8b946 bpo-38629: implement __floor__ and __ceil__ for float type (GH-16985) by Batuhan Taşkaya · 6 years ago