1. 1e996c3 bpo-42085: Introduce dedicated entry in PyAsyncMethods for sending values (#22780) by Vladimir Matveev · 4 years, 9 months ago
  2. 23c5f93 bpo-42294: Add borrowed/strong reference to doc glossary (GH-23206) by Victor Stinner · 4 years, 9 months ago
  3. 53a03aa bpo-42262: Add Py_NewRef() and Py_XNewRef() (GH-23152) by Victor Stinner · 4 years, 9 months ago
  4. c5cb077 Py_IS_TYPE() macro uses Py_TYPE() (GH-22341) by Victor Stinner · 4 years, 11 months ago
  5. b26a0db Revert "bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378)" (GH-21390) by Victor Stinner · 5 years ago
  6. fe2978b bpo-39573: Convert Py_REFCNT and Py_SIZE to functions (GH-20429) by Victor Stinner · 5 years ago
  7. ad3252b bpo-39573: Convert Py_TYPE() to a static inline function (GH-20290) by Dong-hee Na · 5 years ago
  8. e1becf4 bpo-38787: C API for module state access from extension methods (PEP 573) (GH-19936) by Petr Viktorin · 5 years ago
  9. ac2cfe6 Remove extraneous ')' in abstract.h (GH-19146) by Jimmy Yang · 5 years ago
  10. 45ec5b9 bpo-40170: PyType_HasFeature() now always calls PyType_GetFlags() (GH-19378) by Victor Stinner · 5 years ago
  11. 8767ce9 bpo-39573: Make Py_IS_TYPE() take constant parameters (GH-18799) by Andy Lester · 5 years ago
  12. d905df7 bpo-39573: Add Py_IS_TYPE() function (GH-18488) by Dong-hee Na · 5 years ago
  13. 968dcd9 bpo-39573: Fix bad copy-paste in Py_SET_SIZE (GH-18496) by Brandt Bucher · 5 years ago
  14. b10dc3e bpo-39573: Add Py_SET_SIZE() function (GH-18400) by Victor Stinner · 5 years ago
  15. d2ec81a bpo-39573: Add Py_SET_TYPE() function (GH-18394) by Victor Stinner · 5 years ago
  16. c86a112 bpo-39573: Add Py_SET_REFCNT() function (GH-18389) by Victor Stinner · 5 years ago
  17. 3f563ce bpo-39245: Make Vectorcall C API public (GH-17893) by Petr Viktorin · 5 years ago
  18. 0e4e735 bpo-39542: Define PyTypeObject earlier in object.h (GH-18366) by Victor Stinner · 5 years ago
  19. 509dd90 bpo-39542: Convert PyType_Check() to static inline function (GH-18364) by Victor Stinner · 5 years ago
  20. f58bd7c bpo-39542: Make PyObject_INIT() opaque in limited C API (GH-18363) by Victor Stinner · 5 years ago
  21. 0fa4f43 bpo-39542: Exclude trashcan from the limited C API (GH-18362) by Victor Stinner · 5 years ago
  22. 40e547d bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346) by Victor Stinner · 6 years ago
  23. 49932fe bpo-39542: Simplify _Py_NewReference() (GH-18332) by Victor Stinner · 6 years ago
  24. 4b52416 bpo-39542: Move object.h debug functions to internal C API (GH-18331) by Victor Stinner · 6 years ago
  25. c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 6 years ago
  26. f3a0a6b Py_DECREF: only pass filename if Py_REF_DEBUG is defined (GH-17870) by Victor Stinner · 6 years ago
  27. 10e5c66 Typo fix in file Include/object.h (GH-14556) by Hansraj Das · 6 years ago
  28. ada319b bpo-32388: Remove cross-version binary compatibility requirement in tp_flags (GH-4944) by Antoine Pitrou · 6 years ago
  29. aacc77f bpo-36974: implement PEP 590 (GH-13185) by Jeroen Demeyer · 6 years ago
  30. eb65e24 bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338) by Jeroen Demeyer · 6 years ago
  31. 351c674 bpo-35983: skip trashcan for subclasses (GH-11841) by Jeroen Demeyer · 6 years ago
  32. f4e4703 bpo-36465: Make release and debug ABI compatible (GH-12615) by Victor Stinner · 6 years ago
  33. a0da131 bpo-36527: silence -Wunused-parameter warnings in object.h (GH-12688) by Dmitry Marakasov · 6 years ago
  34. 9bdd2de bpo-35134: Don't define types twice in header files (GH-10754) by Victor Stinner · 7 years ago
  35. 6eb9966 bpo-35134: Create Include/cpython/object.h (GH-10679) by Victor Stinner · 7 years ago
  36. 2ff8fb7 bpo-35059: Add _PyObject_CAST() macro (GH-10645) by Victor Stinner · 7 years ago
  37. 271753a bpo-35059: Convert _PyObject_GC_TRACK() to inline function (GH-10643) by Victor Stinner · 7 years ago
  38. f1d002c bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642) by Victor Stinner · 7 years ago
  39. a757649 bpo-35230: dict: Remove some macros (GH-10513) by INADA Naoki · 7 years ago
  40. 3c09dca bpo-35059: Convert _Py_Dealloc() to static inline function (GH-10223) by Victor Stinner · 7 years ago
  41. 541497e bpo-35059: Convert Py_XINCREF() to static inline function (GH-10224) by Victor Stinner · 7 years ago
  42. 2aaf0c1 bpo-35059: Convert Py_INCREF() to static inline function (GH-10079) by Victor Stinner · 7 years ago
  43. 49c75a8 bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152) by Pablo Galindo · 7 years ago
  44. c89a932 bpo-35053: Define _PyTraceMalloc_NewReference in object.h (GH-10107) by Victor Stinner · 7 years ago
  45. 626bff8 bpo-9263: Dump Python object on GC assertion failure (GH-10062) by Victor Stinner · 7 years ago
  46. 18618e65 bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093) by Victor Stinner · 7 years ago
  47. 6279c1c bpo-35053: Add Include/tracemalloc.h (GH-10091) by Victor Stinner · 7 years ago
  48. 9e00e80 bpo-35053: Enhance tracemalloc to trace free lists (GH-10063) by Victor Stinner · 7 years ago
  49. 82af0b6 bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) by Victor Stinner · 7 years ago
  50. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 8 years ago
  51. 378edee bpo-32544: Speed up hasattr() and getattr() (GH-5173) by INADA Naoki · 8 years ago
  52. 25420fe bpo-32030: Add more options to _PyCoreConfig (#4485) by Victor Stinner · 8 years ago
  53. a5293b4 Fix miscellaneous typos (#4275) by luzpaz · 8 years ago
  54. e8b1965 bpo-23699: Use a macro to reduce boilerplate code in rich comparison functions (GH-793) by stratakis · 8 years ago
  55. 4ab46d7 bpo-31497: Add private helper _PyType_Name(). (#3630) by Serhiy Storchaka · 8 years ago
  56. dae0276 bpo-30860: Fix a refleak. (#3567) by Eric Snow · 8 years ago
  57. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 8 years ago
  58. 8728018 bpo-30860: Fix a refleak. (#3506) by Eric Snow · 8 years ago
  59. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 8 years ago
  60. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 8 years ago
  61. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 8 years ago
  62. a66f9c6 bpo-30341: Improve _PyTrash_thread_destroy_chain() a little bit (#1545) by Xiang Zhang · 8 years ago
  63. 34d0ac8 Issue #29058: All stable API extensions added after Python 3.2 are now by Serhiy Storchaka · 9 years ago
  64. 9fab79b Issue #26900: Excluded underscored names and other private API from limited API. by Serhiy Storchaka · 9 years ago
  65. 4f29e75 Issue #24254: Drop cls.__definition_order__. by Eric Snow · 9 years ago
  66. 742da04 Implement compact dict by Victor Stinner · 9 years ago
  67. 5223f08 make _Py_static_string_init use a designated initializer by Benjamin Peterson · 9 years ago
  68. 92a6c17 Issue #24254: Preserve class attribute definition order. by Eric Snow · 9 years ago
  69. f01e408 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 9 years ago
  70. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 9 years ago
  71. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
  72. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
  73. af4a1f2 fix indentation in Py_DECREF() by Victor Stinner · 9 years ago
  74. c04fb56 Issue #26304: Change "allows to <verb>" to "allows <verb>ing" or similar by Martin Panter · 9 years ago
  75. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 10 years ago
  76. beaa509 docs: Better comment for tp_as_async slot by Yury Selivanov · 10 years ago
  77. 6ef0590 Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc. by Yury Selivanov · 10 years ago
  78. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 10 years ago
  79. dfa4e04 Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 10 years ago
  80. 4882cac Issue #23943: Fix typos. Patch by Piotr Kasprzyk. by Berker Peksag · 10 years ago
  81. d600951 Issue #22869: Split pythonrun into two modules by Nick Coghlan · 11 years ago
  82. df4518c Issue #22453: Removed non-documented macro PyObject_REPR(). by Serhiy Storchaka · 11 years ago
  83. 81f68a7 Issue #22453: Warn against the use of leaking macro PyObject_REPR(). by Serhiy Storchaka · 11 years ago
  84. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 11 years ago
  85. 2623c8c Issue #20530: Argument Clinic's signature format has been revised again. by Larry Hastings · 11 years ago
  86. ca7b046 Issue #17162: Add PyType_GetSlot. by Martin v. Löwis · 12 years ago
  87. 581ee36 Issue #20326: Argument Clinic now uses a simple, unique signature to by Larry Hastings · 12 years ago
  88. c204726 Issue #20390: Small fixes and improvements for Argument Clinic. by Larry Hastings · 12 years ago
  89. 5c66189 Issue #20189: Four additional builtin types (PyTypeObject, by Larry Hastings · 12 years ago
  90. 1c0689c Issue #19526: Exclude all new API from the stable ABI. by Martin v. Löwis · 12 years ago
  91. 2ccf8e9 Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 12 years ago
  92. 65846c6 Issue #6477: Keep PyNotImplemented_Type and PyNone_Type private. by Alexandre Vassalotti · 12 years ago
  93. 3c23e7a Issue #6477: Merge with 3.3. by Alexandre Vassalotti · 12 years ago
  94. 19b6fa6 Issue #6477: Added support for pickling the types of built-in singletons. by Alexandre Vassalotti · 12 years ago
  95. 985ecdc ssue #19183: Implement PEP 456 'secure and interchangeable hash algorithm'. by Christian Heimes · 12 years ago
  96. bd303c1 Issue #19512, #19515: remove shared identifiers, move identifiers where they by Victor Stinner · 12 years ago
  97. ad14ccd Issue #19512: add _PyUnicode_CompareWithId() function by Victor Stinner · 12 years ago
  98. 0905437 Issue #19512: add some common identifiers to only create common strings once, by Victor Stinner · 12 years ago
  99. c13516b merge by Raymond Hettinger · 12 years ago
  100. 2ff2190 Issue #18594: Fix the fast path for collections.Counter(). by Raymond Hettinger · 12 years ago