1. 4908fae bpo-43916: PyStdPrinter_Type uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25749) by Victor Stinner · 4 years, 3 months ago
  2. 3bb0994 bpo-43916: Add Py_TPFLAGS_DISALLOW_INSTANTIATION type flag (GH-25721) by Victor Stinner · 4 years, 3 months ago
  3. b73b5fb bpo-43973: object_set_class() checks Py_TPFLAGS_IMMUTABLETYPE (GH-25714) by Erlend Egeberg Aasland · 4 years, 3 months ago
  4. 069e81a bpo-43977: Use tp_flags for collection matching (GH-25723) by Mark Shannon · 4 years, 3 months ago
  5. 175a54b Two minor fixes for accessing a module's name. (#25658) by larryhastings · 4 years, 4 months ago
  6. 2f2b698 bpo-43901: Lazy-create an empty annotations dict in all unannotated user classes and modules (#25623) by larryhastings · 4 years, 4 months ago
  7. 87655e2 bpo-42800: Rename AUDIT_READ to PY_AUDIT_READ (GH-25736) by Steve Dower · 4 years, 4 months ago
  8. 9a2c2a9 bpo-42800: add audit hooks for f_code and tb_frame (GH-24182) by Ryan Hileman · 4 years, 4 months ago
  9. 088a15c bpo-43933: Show frame.f_lineno as None, rather than -1, if there is no line number. (GH-25717) by Mark Shannon · 4 years, 4 months ago
  10. c76da79 bpo-42739: Don't use sentinels to mark end of line table. (GH-25657) by Mark Shannon · 4 years, 4 months ago
  11. 8557edb bpo-24275: Don't downgrade unicode-only dicts to mixed on lookups (GH-25186) by Hristo Venev · 4 years, 4 months ago
  12. 3b52c8d bpo-43908: Add Py_TPFLAGS_IMMUTABLETYPE flag (GH-25520) by Erlend Egeberg Aasland · 4 years, 4 months ago
  13. 859577c bpo-41559: Change PEP 612 implementation to pure Python (#25449) by Ken Jin · 4 years, 4 months ago
  14. 32c5a17 bpo-43962: Fix _PyInterpreterState_IDIncref() (GH-25683) by Victor Stinner · 4 years, 4 months ago
  15. a77aac4 bpo-43914: Highlight invalid ranges in SyntaxErrors (#25525) by Pablo Galindo · 4 years, 4 months ago
  16. a07da09 bpo-43475: Fix worst case collision behavior for NaN instances (GH-25493) by Raymond Hettinger · 4 years, 4 months ago
  17. cdad272 bpo-40137: Add pycore_moduleobject.h internal header (GH-25507) by Victor Stinner · 4 years, 4 months ago
  18. 760da62 bpo-40137: Optimize _PyType_GetModuleByDef() loop (GH-25505) by Victor Stinner · 4 years, 4 months ago
  19. d4aaa34 bpo-40137: _PyType_GetModuleByDef() doesn't check tp_flags (GH-25504) by Victor Stinner · 4 years, 4 months ago
  20. 3b82cae bpo-38530: Properly extend UnboundLocalError from NameError (GH-25444) by Pablo Galindo · 4 years, 4 months ago
  21. 5bf8bf2 bpo-38530: Offer suggestions on NameError (GH-25397) by Pablo Galindo · 4 years, 4 months ago
  22. 37494b4 bpo-38530: Offer suggestions on AttributeError (#16856) by Pablo Galindo · 4 years, 4 months ago
  23. a328d73 bpo-43770: Cleanup type_ready() (GH-25388) by Victor Stinner · 4 years, 4 months ago
  24. 65f058e bpo-43770: Reorder type_ready() (GH-25373) by Victor Stinner · 4 years, 4 months ago
  25. 553ee27 bpo-43682: Make staticmethod objects callable (GH-25117) by Victor Stinner · 4 years, 4 months ago
  26. 53114ff bpo-43770: Refactor PyType_Ready() function (GH-25336) by Victor Stinner · 4 years, 4 months ago
  27. dfb4532 bpo-43751: Fix anext() bug where it erroneously returned None (GH-25238) by Dennis Sweeney · 4 years, 4 months ago
  28. 09bbebe bpo-43753: Add Py_Is() and Py_IsNone() functions (GH-25227) by Victor Stinner · 4 years, 4 months ago
  29. ecf14e6 bpo-43770: Refactor type_new() function (GH-25325) by Victor Stinner · 4 years, 4 months ago
  30. 507a574 bpo-43682: @staticmethod inherits attributes (GH-25268) by Victor Stinner · 4 years, 4 months ago
  31. b98eba5 bpo-43770: _PyTypes_Init() inits _PyAnextAwaitable_Type (GH-25266) by Victor Stinner · 4 years, 4 months ago
  32. df5dc1c bpo-43770: _PyTypes_Init() inits more static types (GH-25265) by Victor Stinner · 4 years, 4 months ago
  33. a518099 bpo-43770: Sort types in _PyTypes_Init() (GH-25263) by Victor Stinner · 4 years, 4 months ago
  34. b37181e bpo-43683: Handle generator entry in bytecode (GH-25138) by Mark Shannon · 4 years, 4 months ago
  35. 3359cab bpo-43688: Support the limited C API in debug mode (GH-25131) by Victor Stinner · 4 years, 4 months ago
  36. 442ad74 bpo-43687: Py_Initialize() creates singletons earlier (GH-25147) by Victor Stinner · 4 years, 4 months ago
  37. fcb55c0 bpo-27129: Use instruction offsets, not byte offsets, in bytecode and internally. (GH-25069) by Mark Shannon · 4 years, 4 months ago
  38. 078a343 When printing stats, move radix tree info to its own section. (GH-25125) by Tim Peters · 4 years, 4 months ago
  39. dec0757 bpo-43179: Generalise alignment for optimised string routines (GH-24624) by Jessica Clarke · 4 years, 4 months ago
  40. 85b6b70 bpo-37448: Use radix tree for pymalloc address_in_range(). (GH-14474) by Neil Schemenauer · 4 years, 5 months ago
  41. 4827483 bpo-43510: Implement PEP 597 opt-in EncodingWarning. (GH-19481) by Inada Naoki · 4 years, 5 months ago
  42. 11b85ab bpo-43636: Validate the version tag in _PyType_Lookup (GH-25032) by Pablo Galindo · 4 years, 5 months ago
  43. 7278959 bpo-43198: Revert 3dd2157 that removed freeslot tracking. (#25010) by Raymond Hettinger · 4 years, 5 months ago
  44. 919d42d bpo-31861: Fix possible crash in PyAnextAwaitable_New (GH-25005) by Pablo Galindo · 4 years, 5 months ago
  45. a81fca6 bpo-43244: Add pycore_compile.h header file (GH-25000) by Victor Stinner · 4 years, 5 months ago
  46. f0a6fde bpo-31861: Add aiter and anext to builtins (#23847) by Joshua Bronson · 4 years, 5 months ago
  47. ee48c7d bpo-43452: Micro-optimizations to PyType_Lookup (GH-24804) by Dino Viehland · 4 years, 5 months ago
  48. 7cb033c bpo-43494: Make some minor changes to lnotab notes (GH-24861) by Skip Montanaro · 4 years, 5 months ago
  49. fc980e0 bpo-43541: Fix PyEval_EvalCodeEx() regression (GH-24918) by Victor Stinner · 4 years, 5 months ago
  50. 9976834 bpo-35883: Py_DecodeLocale() escapes invalid Unicode characters (GH-24843) by Victor Stinner · 4 years, 5 months ago
  51. 75048c8 bpo-43441: Fix _PyType_ClearCache() for subinterpreters (GH-24822) by junyixie · 4 years, 5 months ago
  52. 0632b10 bpo-42128: Add __match_args__ to structseq-based classes (GH-24732) by Pablo Galindo · 4 years, 5 months ago
  53. c994ffe bpo-11717: fix ssize_t redefinition error when targeting 32bit Windows app (GH-24479) by Jozef Grajciar · 4 years, 5 months ago
  54. 73a85c4 bpo-41972: Use the two-way algorithm for string searching (GH-22904) by Dennis Sweeney · 4 years, 6 months ago
  55. 145bf26 bpo-42128: Structural Pattern Matching (PEP 634) (GH-22917) by Brandt Bucher · 4 years, 6 months ago
  56. cc02b4f bpo-38302: __pow__/__rpow__ now called when __ipow__ returns NotImplemented (#16459) by Alex · 4 years, 6 months ago
  57. b19855b bpo-42808: Add PyType_Type.tp_vectorcall for type(obj) performance (GH-24058) by Dennis Sweeney · 4 years, 6 months ago
  58. d5fc998 bpo-42093: Cleanup _PyDict_GetItemHint() (GH-24582) by Victor Stinner · 4 years, 6 months ago
  59. d439fb3 bpo-43277: Add PySet_CheckExact to the C-API (GH-24598) by Pablo Galindo · 4 years, 6 months ago
  60. 46496f9 bpo-42990: Functions inherit current builtins (GH-24564) by Victor Stinner · 4 years, 6 months ago
  61. bcb094b bpo-43268: Pass interp rather than tstate to internal functions (GH-24580) by Victor Stinner · 4 years, 6 months ago
  62. 101bf69 bpo-43268: _Py_IsMainInterpreter() now expects interp (GH-24577) by Victor Stinner · 4 years, 6 months ago
  63. 44085a3 bpo-42990: Refactor _PyFrame_New_NoTrack() (GH-24566) by Victor Stinner · 4 years, 6 months ago
  64. a3c3ffa bpo-42990: Add __builtins__ attribute to functions (GH-24559) by Victor Stinner · 4 years, 6 months ago
  65. cd80f43 bpo-40170: Always define PyExceptionClass_Name() as a function (GH-24553) by Erlend Egeberg Aasland · 4 years, 6 months ago
  66. cc54001 bpo-40170: Always define PyIter_Check() as a function (GH-24548) by Erlend Egeberg Aasland · 4 years, 6 months ago
  67. 871eb42 bpo-40170: Convert PyDescr_IsData() to static inline function (GH-24535) by Erlend Egeberg Aasland · 4 years, 6 months ago
  68. 0332e56 bpo-42990: Further refactoring of PyEval_ functions. (GH-24368) by Mark Shannon · 4 years, 6 months ago
  69. 86e322f bpo-40455: Fix gcc10+ warning about writing into a section of offset 0 (GH-24384) by Pablo Galindo · 4 years, 6 months ago
  70. a619263 bpo-42979: Use _Py_CheckSlotResult() to check slots result (GH-24356) by Victor Stinner · 4 years, 7 months ago
  71. d6c33fb bpo-42990: Introduce 'frame constructor' struct to simplify API for PyEval_CodeEval and friends (GH-24298) by Mark Shannon · 4 years, 7 months ago
  72. c9b8e9c bpo-42979: Enhance abstract.c assertions checking slot result (GH-24352) by Victor Stinner · 4 years, 7 months ago
  73. 250035d bpo-42923: Dump extension modules on fatal error (GH-24207) by Victor Stinner · 4 years, 7 months ago
  74. 61d8c54 bpo-42924: Fix incorrect copy in bytearray_repeat (GH-24208) by Tobias Holl · 4 years, 7 months ago
  75. ee9f98d bpo-42823: Fix frame lineno when frame.f_trace is set (GH-24099) by Mark Shannon · 4 years, 7 months ago
  76. 5d3553b bpo-42814: Fix undefined behavior in Objects/genericaliasobject.c (GH-24073) by Zackery Spytz · 4 years, 7 months ago
  77. 49cd68f bpo-42195: Disallow isinstance/issubclass for subclasses of genericaliases in Union (GH-24059) by Ken Jin · 4 years, 7 months ago
  78. c56387f bpo-27794: Add `name` attribute to `property` class (GH-23967) by Yurii Karabas · 4 years, 8 months ago
  79. 056c082 bpo-40052: Fix alignment issue in PyVectorcall_Function() (GH-23999) by Petr Viktorin · 4 years, 8 months ago
  80. a6d63a2 Fix compiler warnings regarding loss of data (GH-23983) by Pablo Galindo · 4 years, 8 months ago
  81. f450723 bpo-42745: finalize_interp_types() calls _PyType_Fini() (GH-23953) by Victor Stinner · 4 years, 8 months ago
  82. ea25180 bpo-40521: Per-interpreter interned strings (GH-20085) by Victor Stinner · 4 years, 8 months ago
  83. 4101018 bpo-42745: Make the type cache per-interpreter (GH-23947) by Victor Stinner · 4 years, 8 months ago
  84. ba3d67c bpo-39465: Fix _PyUnicode_FromId() for subinterpreters (GH-20058) by Victor Stinner · 4 years, 8 months ago
  85. 73607be bpo-41559: Implement PEP 612 - Add ParamSpec and Concatenate to typing (#23702) by kj · 4 years, 8 months ago
  86. 463c7d3 bpo-42195: Ensure consistency of Callable's __args__ in collections.abc and typing (GH-23060) by kj · 4 years, 8 months ago
  87. 804d689 bpo-42576: Raise TypeError when passing in keyword arguments to GenericAlias (GH-23656) by kj · 4 years, 8 months ago
  88. 226a012 bpo-42536: GC track recycled tuples (GH-23623) by Brandt Bucher · 4 years, 8 months ago
  89. 2ad9382 bpo-42431: Fix outdated bytes comments (GH-23458) by Serhiy Storchaka · 4 years, 8 months ago
  90. 32bd68c bpo-42519: Replace PyObject_MALLOC() with PyObject_Malloc() (GH-23587) by Victor Stinner · 4 years, 8 months ago
  91. 00d7abd bpo-42519: Replace PyMem_MALLOC() with PyMem_Malloc() (GH-23586) by Victor Stinner · 4 years, 8 months ago
  92. 7301979 bpo-42202: Store func annotations as a tuple (GH-23316) by Yurii Karabas · 4 years, 9 months ago
  93. ed1a5a5 bpo-40170: Hide impl detail of Py_TRASHCAN_BEGIN macro (GH-23235) by Hai Shi · 4 years, 9 months ago
  94. 313467e bpo-42435: Speed up comparison of bytes and bytearray object (GH--23461) by Serhiy Storchaka · 4 years, 9 months ago
  95. 686c203 bpo-42423: Accept single base class in PyType_FromModuleAndSpec() (GH-23441) by Serhiy Storchaka · 4 years, 9 months ago
  96. ed1007c bpo-42425: Fix possible leak in initialization of errmap for OSError (GH-23446) by Serhiy Storchaka · 4 years, 9 months ago
  97. 1db7639 bpo-42412: Fix possible leaks and check arguments in PyType_FromModuleAndSpec() (GH-23410) by Serhiy Storchaka · 4 years, 9 months ago
  98. 07f2ade bpo-40998: Address compiler warnings found by ubsan (GH-20929) by Christian Heimes · 4 years, 9 months ago
  99. 384b7a4 bpo-42332: Add weakref slot to types.GenericAlias (GH-23250) by kj · 4 years, 9 months ago
  100. 877df85 bpo-42246: Partial implementation of PEP 626. (GH-23113) by Mark Shannon · 4 years, 9 months ago