1. b7aa23d bpo-40521: Disable list free list in subinterpreters (GH-19959) by Victor Stinner · 5 years ago
  2. 89fc4a3 bpo-40521: Disable method cache in subinterpreters (GH-19960) by Victor Stinner · 5 years ago
  3. 96074de bpo-40523: Add pass-throughs for hash() and reversed() to weakref.proxy objects (GH-19946) by Pablo Galindo · 5 years ago
  4. b4b5386 bpo-40521: Disable free lists in subinterpreters (GH-19937) by Victor Stinner · 5 years ago
  5. 607b102 bpo-40521: Disable Unicode caches in isolated subinterpreters (GH-19933) by Victor Stinner · 5 years ago
  6. b0be6b3 bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902) by Victor Stinner · 5 years ago
  7. b88cd58 bpo-40455: Remove gcc10 warning about x_digits (#19852) by Dong-hee Na · 5 years ago
  8. 5e8ffe1 bpo-39573: Use Py_IS_TYPE to check for types (GH-19882) by Hai Shi · 5 years ago
  9. 41a6458 bpo-40408: Fix support of nested type variables in GenericAlias. (GH-19836) by Serhiy Storchaka · 5 years ago
  10. d699d5e Remove out-of-date comment (GH-19886) by Raymond Hettinger · 5 years ago
  11. 3dd2157 Simplify set entry insertion logic. (GH-19881) by Raymond Hettinger · 5 years ago
  12. 21893fb bpo-29587: allow chaining NULL exceptions in _gen_throw() (GH-19877) by Chris Jerdonek · 5 years ago
  13. 0204726 bpo-29587: Update gen.throw() to chain exceptions (#19823) by Chris Jerdonek · 5 years ago
  14. 3c7f9db Revert "bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811)" (#19821) by Victor Stinner · 5 years ago
  15. 2514a63 bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811) by Chris Jerdonek · 5 years ago
  16. 5769724 bpo-40228: More robust frame.setlineno. (GH-19437) by Mark Shannon · 5 years ago
  17. 7036477 bpo-40421: Add PyFrame_GetBack() function (GH-19765) by Victor Stinner · 5 years ago
  18. 4386b90 bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781) by Victor Stinner · 5 years ago
  19. ae00a5a bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769) by Victor Stinner · 5 years ago
  20. cc0dc7e bpo-40429: Refactor super_init() (GH-19776) by Victor Stinner · 5 years ago
  21. 8852ad4 bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773) by Victor Stinner · 5 years ago
  22. 6d86a23 bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772) by Victor Stinner · 5 years ago
  23. a42ca74 bpo-40421: Add PyFrame_GetCode() function (GH-19757) by Victor Stinner · 5 years ago
  24. 7c59d7c bpo-40421: Add pyframe.h header file (GH-19755) by Victor Stinner · 5 years ago
  25. 91a5ae1 bpo-40217: Clean code in PyType_FromSpec_Alloc and add NEWS entry (GH-19733) by Pablo Galindo · 5 years ago
  26. 0169d30 bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpec types (GH-19414) by Pablo Galindo · 5 years ago
  27. 02e4484 Update ga_new to use _PyArg_CheckPositional and _PyArg_NoKwnames (GH-19679) by Dong-hee Na · 5 years ago
  28. a81849b bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939) by sweeneyde · 5 years ago
  29. d7c657d bpo-40302: UTF-32 encoder SWAB4() macro use a|b rather than a+b (GH-19572) by Victor Stinner · 5 years ago
  30. 1a1bd2e bpo-40302: Replace PY_INT64_T with int64_t (GH-19573) by Victor Stinner · 5 years ago
  31. 1ae035b bpo-40302: Add pycore_byteswap.h header file (GH-19552) by Victor Stinner · 5 years ago
  32. 361dcdc bpo-40268: Remove unused osdefs.h includes (GH-19532) by Victor Stinner · 5 years ago
  33. d9ea5ca bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) by Victor Stinner · 5 years ago
  34. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 5 years ago
  35. 675d9a3 bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464) by Hai Shi · 5 years ago
  36. e560f90 bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515) by Victor Stinner · 5 years ago
  37. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 5 years ago
  38. 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 5 years ago
  39. 4a3fe08 bpo-40268: Include explicitly pycore_interp.h (GH-19505) by Victor Stinner · 5 years ago
  40. 8ef8750 bpo-39481: Make weakref and WeakSet generic (GH-19497) by Ethan Smith · 5 years ago
  41. da7933e bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) by Victor Stinner · 5 years ago
  42. 8f87eef bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472) by Serhiy Storchaka · 5 years ago
  43. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 5 years ago
  44. 7c4185d bpo-39481: PEP 585 for enumerate, AsyncGeneratorType, mmap (GH-19421) by Ethan Smith · 5 years ago
  45. 38ada3b bpo-39943: Keep constness of pointer objects. (19405) by Andy Lester · 5 years ago
  46. 307b9d0 bpo-40170: Remove PyIndex_Check() macro (GH-19428) by Victor Stinner · 5 years ago
  47. a15e260 bpo-40170: Add _PyIndex_Check() internal function (GH-19426) by Victor Stinner · 5 years ago
  48. 45ec5b9 bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378) by Victor Stinner · 5 years ago
  49. ef5c615 bpo-40170: Convert PyObject_CheckBuffer() macro to a function (GH-19376) by Victor Stinner · 5 years ago
  50. 9205520 bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379) by Victor Stinner · 5 years ago
  51. 48b069a bpo-39481: Implementation for PEP 585 (#18239) by Guido van Rossum · 5 years ago
  52. d8acf0d bpo-37388: Don't check encoding/errors during finalization (GH-19409) by Victor Stinner · 5 years ago
  53. 38aefc5 bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377) by Victor Stinner · 5 years ago
  54. e27916b bpo-37207: Use PEP 590 vectorcall to speed up dict() (GH-19280) by Dong-hee Na · 5 years ago
  55. 17b4733 bpo-40130: _PyUnicode_AsKind() should not be exported. (GH-19265) by Serhiy Storchaka · 5 years ago
  56. ce10554 bpo-37207: Use vectorcall for list() (GH-18928) by Petr Viktorin · 5 years ago
  57. 62d21c9 bpo-39943: Properly const the pointers in dictkeys_get_index (GH-19170) by Andy Lester · 5 years ago
  58. 87d3b9d bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) by Victor Stinner · 5 years ago
  59. 05e4a29 bpo-40024: Add PyModule_AddType() helper function (GH-19088) by Dong-hee Na · 5 years ago
  60. 1c60567 bpo-37207: Use PEP 590 vectorcall to speed up frozenset() (GH-19053) by Dong-hee Na · 5 years ago
  61. 2fe815e bpo-38373: Change list overallocating strategy. (GH-18952) by Serhiy Storchaka · 5 years ago
  62. 5b1ef20 bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738) by Victor Stinner · 5 years ago
  63. 6ff79f65 bpo-37207: Use PEP 590 vectorcall to speed up set() constructor (GH-19019) by Dong-hee Na · 5 years ago
  64. 87ec86c bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980) by Dong-hee Na · 5 years ago
  65. c98f87f bpo-37207: Use _PyArg_CheckPositional() for tuple vectorcall (GH-18986) by Dong-hee Na · 5 years ago
  66. c81609e Fix a possible refleak in tupleobject.c (GH-19018) by Hai Shi · 5 years ago
  67. 3a8c562 Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985) by Inada Naoki · 5 years ago
  68. c7ad974 bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659) by Inada Naoki · 5 years ago
  69. ff4584c bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978) by Victor Stinner · 5 years ago
  70. 6d674a1 bpo-36144: OrderedDict Union (PEP 584) (#18967) by Brandt Bucher · 5 years ago
  71. 38965ec bpo-39947: Hide implementation detail of trashcan macros (GH-18971) by Victor Stinner · 5 years ago
  72. 9ee88cd bpo-37207: Use PEP 590 vectorcall to speed up tuple() (GH-18936) by Dong-hee Na · 5 years ago
  73. 224481a bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972) by Victor Stinner · 5 years ago
  74. c7d2d69 bpo-39884: Add method name in "bad call flags" error (GH-18944) by Victor Stinner · 5 years ago
  75. 51796e5 Update some www.unicode.org URLs to use HTTPS. (GH-18912) by Benjamin Peterson · 5 years ago
  76. 051b9d0 closes bpo-39926: Update Unicode to 13.0.0. (GH-18910) by Benjamin Peterson · 5 years ago
  77. eebaa9b bpo-38249: Expand Py_UNREACHABLE() to __builtin_unreachable() in the release mode. (GH-16329) by Serhiy Storchaka · 5 years ago
  78. e5ccc94 bpo-38643: Raise SystemError instead of crashing when PyNumber_ToBase is called with invalid base. (GH-18863) by Serhiy Storchaka · 5 years ago
  79. 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
  80. 4663f66 bpo-36144: Update MappingProxyType with PEP 584's operators (#18814) by Brandt Bucher · 5 years ago
  81. 9e5d30c bpo-39882: Py_FatalError() logs the function name (GH-18819) by Victor Stinner · 5 years ago
  82. 5572870 bpo-39573: Use Py_IS_TYPE() macro to check for types (GH-18809) by Andy Lester · 5 years ago
  83. 9a73705 bpo-39873: Cleanup _PyObject_CheckConsistency() (GH-18807) by Victor Stinner · 5 years ago
  84. 1fb5a9f bpo-39873: PyObject_Init() uses PyObject_INIT() (GH-18804) by Victor Stinner · 5 years ago
  85. dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 5 years ago
  86. 469325c bpo-35712: Make using NotImplemented in a boolean context issue a deprecation warning (GH-13195) by MojoVampire · 5 years ago
  87. 0c2b509 bpo-39778: Don't traverse weak-reference lists OrderedDict's tp_traverse and tp_clear (GH-18749) by Pablo Galindo · 5 years ago
  88. 02a4d57 bpo-39087: Optimize PyUnicode_AsUTF8AndSize() (GH-18327) by Inada Naoki · 5 years ago
  89. be7ead6 bpo-39737: Remove code repitition in list_richcompare (GH-18638) by sweeneyde · 5 years ago
  90. eb8ac57 bpo-36144: Dictionary Union (PEP 584) (#12088) by Brandt Bucher · 5 years ago
  91. ee3bac4 Give proper credits for the memoryview implementation. (#18626) by Stefan Krah · 5 years ago
  92. 1c56f8f bpo-39382: Avoid dangling object use in abstract_issubclass() (GH-18530) by Yonatan Goldschmidt · 5 years ago
  93. 933fc53f closes bpo-39684: Combine two if/thens and squash uninit var warning. (GH-18565) by Andy Lester · 5 years ago
  94. 6e35da9 bpo-37207: Use vectorcall for range() (GH-18464) by Petr Viktorin · 5 years ago
  95. 24bba8c bpo-36347: stop using RESTRICTED constants (GH-12684) by Jeroen Demeyer · 5 years ago
  96. 3d235f5 bpo-39500: Fix compile warnings in unicodeobject.c (GH-18519) by Hai Shi · 5 years ago
  97. 1b55b65 bpo-39573: Clean up modules and headers to use Py_IS_TYPE() function (GH-18521) by Dong-hee Na · 5 years ago
  98. 9aeb0ef bpo-39573: Update clinic to use Py_IS_TYPE() function (GH-18507) by Dong-hee Na · 5 years ago
  99. 7386a70 closes bpo-39630: Update pointers to string literals to be const char *. (GH-18510) by Andy Lester · 5 years ago
  100. d905df7 bpo-39573: Add Py_IS_TYPE() function (GH-18488) by Dong-hee Na · 5 years ago