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