1. 353c4ba bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (GH-20537) by Miss Islington (bot) · 4 years, 5 months ago
  2. 610a60c bpo-36346: Add Py_DEPRECATED to deprecated unicode APIs (GH-20878) by Inada Naoki · 4 years, 5 months ago
  3. 9419158 bpo-40703: Let PyType_FromSpec() set "type.__module__" only if it is not set yet. (GH-20273) (GH-20782) by Miss Islington (bot) · 4 years, 5 months ago
  4. 1e4fa91 bpo-40724: Support setting buffer slots from type specs (GH-20648) (GH-20683) by Miss Islington (bot) · 4 years, 5 months ago
  5. bcbe5c5 bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpec types (reverts GH-19414) (GH-20264) by Miss Islington (bot) · 4 years, 6 months ago
  6. a3c3e89 Remove spurious NULL in descrobject.c (GH-20344) by Miss Islington (bot) · 4 years, 6 months ago
  7. 7f77ac4 bpo-40696: Fix a hang that can arise after gen.throw() (GH-20287) by Miss Islington (bot) · 4 years, 6 months ago
  8. 9512ad7 [3.9] bpo-40514: Remove --with-experimental-isolated-subinterpreters in 3.9 (GH-20228) by Victor Stinner · 4 years, 6 months ago
  9. f02c304 Use _PyErr_ChainStackItem() inside gen_send_ex(). (GH-20173) (#20202) by Miss Islington (bot) · 4 years, 6 months ago
  10. da742ba bpo-31033: Improve the traceback for cancelled asyncio tasks (GH-19951) by Chris Jerdonek · 4 years, 6 months ago
  11. 6b6092f bpo-39075: types.SimpleNamespace no longer sorts attributes in its repr (GH-19430) by Zackery Spytz · 4 years, 6 months ago
  12. 3d17c04 bpo-40521: Add PyInterpreterState.unicode (GH-20081) by Victor Stinner · 4 years, 6 months ago
  13. 75cd8e4 bpo-29587: Make gen.throw() chain exceptions with yield from (GH-19858) by Chris Jerdonek · 4 years, 6 months ago
  14. d6fb53f bpo-39465: Remove _PyUnicode_ClearStaticStrings() from C API (GH-20078) by Victor Stinner · 4 years, 6 months ago
  15. 4c9ea09 bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024) by scoder · 4 years, 6 months ago
  16. 5650e76 bpo-40596: Fix str.isidentifier() for non-canonicalized strings containing non-BMP characters on Windows. (GH-20053) by Serhiy Storchaka · 4 years, 6 months ago
  17. 74ea6b5 bpo-40593: Improve syntax errors for invalid characters in source code. (GH-20033) by Serhiy Storchaka · 4 years, 6 months ago
  18. 4804b5b bpo-39465: Don't access directly _Py_Identifier members (GH-20043) by Victor Stinner · 4 years, 6 months ago
  19. 86d6944 bpo-40584: Update PyType_FromModuleAndSpec() to process tp_vectorcall_offset (GH-20026) by Hai Shi · 4 years, 6 months ago
  20. 6067d4b bpo-40575: Avoid unnecessary overhead in _PyDict_GetItemIdWithError() (GH-20018) by scoder · 4 years, 6 months ago
  21. 2cc9b84 Improve code clarity for the set lookup logic (GH-20028) by Raymond Hettinger · 4 years, 6 months ago
  22. 86a93fd bpo-37986: Improve perfomance of PyLong_FromDouble() (GH-15611) by Sergey Fedoseev · 4 years, 6 months ago
  23. 02fa0ea bpo-40273: Reversible mappingproxy (FH-19513) by Zackery Spytz · 4 years, 6 months ago
  24. e1becf4 bpo-38787: C API for module state access from extension methods (PEP 573) (GH-19936) by Petr Viktorin · 4 years, 6 months ago
  25. b7aa23d bpo-40521: Disable list free list in subinterpreters (GH-19959) by Victor Stinner · 4 years, 6 months ago
  26. 89fc4a3 bpo-40521: Disable method cache in subinterpreters (GH-19960) by Victor Stinner · 4 years, 6 months ago
  27. 96074de bpo-40523: Add pass-throughs for hash() and reversed() to weakref.proxy objects (GH-19946) by Pablo Galindo · 4 years, 6 months ago
  28. b4b5386 bpo-40521: Disable free lists in subinterpreters (GH-19937) by Victor Stinner · 4 years, 6 months ago
  29. 607b102 bpo-40521: Disable Unicode caches in isolated subinterpreters (GH-19933) by Victor Stinner · 4 years, 6 months ago
  30. b0be6b3 bpo-29587: _PyErr_ChainExceptions() checks exception (GH-19902) by Victor Stinner · 4 years, 6 months ago
  31. b88cd58 bpo-40455: Remove gcc10 warning about x_digits (#19852) by Dong-hee Na · 4 years, 6 months ago
  32. 5e8ffe1 bpo-39573: Use Py_IS_TYPE to check for types (GH-19882) by Hai Shi · 4 years, 6 months ago
  33. 41a6458 bpo-40408: Fix support of nested type variables in GenericAlias. (GH-19836) by Serhiy Storchaka · 4 years, 6 months ago
  34. d699d5e Remove out-of-date comment (GH-19886) by Raymond Hettinger · 4 years, 6 months ago
  35. 3dd2157 Simplify set entry insertion logic. (GH-19881) by Raymond Hettinger · 4 years, 6 months ago
  36. 21893fb bpo-29587: allow chaining NULL exceptions in _gen_throw() (GH-19877) by Chris Jerdonek · 4 years, 6 months ago
  37. 0204726 bpo-29587: Update gen.throw() to chain exceptions (#19823) by Chris Jerdonek · 4 years, 6 months ago
  38. 3c7f9db Revert "bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811)" (#19821) by Victor Stinner · 4 years, 7 months ago
  39. 2514a63 bpo-29587: Enable implicit exception chaining with gen.throw() (GH-19811) by Chris Jerdonek · 4 years, 7 months ago
  40. 5769724 bpo-40228: More robust frame.setlineno. (GH-19437) by Mark Shannon · 4 years, 7 months ago
  41. 7036477 bpo-40421: Add PyFrame_GetBack() function (GH-19765) by Victor Stinner · 4 years, 7 months ago
  42. 4386b90 bpo-40429: PyThreadState_GetFrame() returns a strong ref (GH-19781) by Victor Stinner · 4 years, 7 months ago
  43. ae00a5a bpo-40428: Remove PyTuple_ClearFreeList() function (GH-19769) by Victor Stinner · 4 years, 7 months ago
  44. cc0dc7e bpo-40429: Refactor super_init() (GH-19776) by Victor Stinner · 4 years, 7 months ago
  45. 8852ad4 bpo-40429: PyFrame_GetCode() now returns a strong reference (GH-19773) by Victor Stinner · 4 years, 7 months ago
  46. 6d86a23 bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772) by Victor Stinner · 4 years, 7 months ago
  47. a42ca74 bpo-40421: Add PyFrame_GetCode() function (GH-19757) by Victor Stinner · 4 years, 7 months ago
  48. 7c59d7c bpo-40421: Add pyframe.h header file (GH-19755) by Victor Stinner · 4 years, 7 months ago
  49. 91a5ae1 bpo-40217: Clean code in PyType_FromSpec_Alloc and add NEWS entry (GH-19733) by Pablo Galindo · 4 years, 7 months ago
  50. 0169d30 bpo-40217: Ensure Py_VISIT(Py_TYPE(self)) is always called for PyType_FromSpec types (GH-19414) by Pablo Galindo · 4 years, 7 months ago
  51. 02e4484 Update ga_new to use _PyArg_CheckPositional and _PyArg_NoKwnames (GH-19679) by Dong-hee Na · 4 years, 7 months ago
  52. a81849b bpo-39939: Add str.removeprefix and str.removesuffix (GH-18939) by sweeneyde · 4 years, 7 months ago
  53. d7c657d bpo-40302: UTF-32 encoder SWAB4() macro use a|b rather than a+b (GH-19572) by Victor Stinner · 4 years, 7 months ago
  54. 1a1bd2e bpo-40302: Replace PY_INT64_T with int64_t (GH-19573) by Victor Stinner · 4 years, 7 months ago
  55. 1ae035b bpo-40302: Add pycore_byteswap.h header file (GH-19552) by Victor Stinner · 4 years, 7 months ago
  56. 361dcdc bpo-40268: Remove unused osdefs.h includes (GH-19532) by Victor Stinner · 4 years, 7 months ago
  57. d9ea5ca bpo-40268: Remove unused pycore_pymem.h includes (GH-19531) by Victor Stinner · 4 years, 7 months ago
  58. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 7 months ago
  59. 675d9a3 bpo-40170: Convert PyObject_IS_GC() macro to a function (GH-19464) by Hai Shi · 4 years, 7 months ago
  60. e560f90 bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515) by Victor Stinner · 4 years, 7 months ago
  61. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 4 years, 7 months ago
  62. 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 4 years, 7 months ago
  63. 4a3fe08 bpo-40268: Include explicitly pycore_interp.h (GH-19505) by Victor Stinner · 4 years, 7 months ago
  64. 8ef8750 bpo-39481: Make weakref and WeakSet generic (GH-19497) by Ethan Smith · 4 years, 7 months ago
  65. da7933e bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) by Victor Stinner · 4 years, 7 months ago
  66. 8f87eef bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (GH-19472) by Serhiy Storchaka · 4 years, 7 months ago
  67. cd8295f bpo-39943: Add the const qualifier to pointers on non-mutable PyUnicode data. (GH-19345) by Serhiy Storchaka · 4 years, 7 months ago
  68. 7c4185d bpo-39481: PEP 585 for enumerate, AsyncGeneratorType, mmap (GH-19421) by Ethan Smith · 4 years, 7 months ago
  69. 38ada3b bpo-39943: Keep constness of pointer objects. (19405) by Andy Lester · 4 years, 7 months ago
  70. 307b9d0 bpo-40170: Remove PyIndex_Check() macro (GH-19428) by Victor Stinner · 4 years, 7 months ago
  71. a15e260 bpo-40170: Add _PyIndex_Check() internal function (GH-19426) by Victor Stinner · 4 years, 7 months ago
  72. 45ec5b9 bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378) by Victor Stinner · 4 years, 7 months ago
  73. ef5c615 bpo-40170: Convert PyObject_CheckBuffer() macro to a function (GH-19376) by Victor Stinner · 4 years, 7 months ago
  74. 9205520 bpo-40170: PyObject_NEW() becomes an alias to PyObject_New() (GH-19379) by Victor Stinner · 4 years, 7 months ago
  75. 48b069a bpo-39481: Implementation for PEP 585 (#18239) by Guido van Rossum · 4 years, 7 months ago
  76. d8acf0d bpo-37388: Don't check encoding/errors during finalization (GH-19409) by Victor Stinner · 4 years, 7 months ago
  77. 38aefc5 bpo-40170: PyObject_GET_WEAKREFS_LISTPTR() becomes a function (GH-19377) by Victor Stinner · 4 years, 7 months ago
  78. e27916b bpo-37207: Use PEP 590 vectorcall to speed up dict() (GH-19280) by Dong-hee Na · 4 years, 7 months ago
  79. 17b4733 bpo-40130: _PyUnicode_AsKind() should not be exported. (GH-19265) by Serhiy Storchaka · 4 years, 7 months ago
  80. ce10554 bpo-37207: Use vectorcall for list() (GH-18928) by Petr Viktorin · 4 years, 8 months ago
  81. 62d21c9 bpo-39943: Properly const the pointers in dictkeys_get_index (GH-19170) by Andy Lester · 4 years, 8 months ago
  82. 87d3b9d bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) by Victor Stinner · 4 years, 8 months ago
  83. 05e4a29 bpo-40024: Add PyModule_AddType() helper function (GH-19088) by Dong-hee Na · 4 years, 8 months ago
  84. 1c60567 bpo-37207: Use PEP 590 vectorcall to speed up frozenset() (GH-19053) by Dong-hee Na · 4 years, 8 months ago
  85. 2fe815e bpo-38373: Change list overallocating strategy. (GH-18952) by Serhiy Storchaka · 4 years, 8 months ago
  86. 5b1ef20 bpo-39824: module_traverse() don't call m_traverse if md_state=NULL (GH-18738) by Victor Stinner · 4 years, 8 months ago
  87. 6ff79f65 bpo-37207: Use PEP 590 vectorcall to speed up set() constructor (GH-19019) by Dong-hee Na · 4 years, 8 months ago
  88. 87ec86c bpo-37207: Add _PyArg_NoKwnames() helper function (GH-18980) by Dong-hee Na · 4 years, 8 months ago
  89. c98f87f bpo-37207: Use _PyArg_CheckPositional() for tuple vectorcall (GH-18986) by Dong-hee Na · 4 years, 8 months ago
  90. c81609e Fix a possible refleak in tupleobject.c (GH-19018) by Hai Shi · 4 years, 8 months ago
  91. 3a8c562 Revert "bpo-39087: Add _PyUnicode_GetUTF8Buffer()" (GH-18985) by Inada Naoki · 4 years, 8 months ago
  92. c7ad974 bpo-39087: Add _PyUnicode_GetUTF8Buffer() (GH-17659) by Inada Naoki · 4 years, 8 months ago
  93. ff4584c bpo-39947: Use _PyInterpreterState_GET_UNSAFE() (GH-18978) by Victor Stinner · 4 years, 8 months ago
  94. 6d674a1 bpo-36144: OrderedDict Union (PEP 584) (#18967) by Brandt Bucher · 4 years, 8 months ago
  95. 38965ec bpo-39947: Hide implementation detail of trashcan macros (GH-18971) by Victor Stinner · 4 years, 8 months ago
  96. 9ee88cd bpo-37207: Use PEP 590 vectorcall to speed up tuple() (GH-18936) by Dong-hee Na · 4 years, 8 months ago
  97. 224481a bpo-39947: Move Py_EnterRecursiveCall() to internal C API (GH-18972) by Victor Stinner · 4 years, 8 months ago
  98. c7d2d69 bpo-39884: Add method name in "bad call flags" error (GH-18944) by Victor Stinner · 4 years, 8 months ago
  99. 51796e5 Update some www.unicode.org URLs to use HTTPS. (GH-18912) by Benjamin Peterson · 4 years, 8 months ago
  100. 051b9d0 closes bpo-39926: Update Unicode to 13.0.0. (GH-18910) by Benjamin Peterson · 4 years, 8 months ago