1. c65b320 bpo-39573: Use Py_TYPE() macro in object.c (GH-18398) by Victor Stinner · 4 years, 8 months ago
  2. d2ec81a bpo-39573: Add Py_SET_TYPE() function (GH-18394) by Victor Stinner · 4 years, 8 months ago
  3. 58ac700 bpo-39573: Use Py_TYPE() macro in Objects directory (GH-18392) by Victor Stinner · 4 years, 8 months ago
  4. c86a112 bpo-39573: Add Py_SET_REFCNT() function (GH-18389) by Victor Stinner · 4 years, 8 months ago
  5. a93c51e bpo-39573: Use Py_REFCNT() macro (GH-18388) by Victor Stinner · 4 years, 8 months ago
  6. 58f4e1a bpo-39542: Declare _Py_AddToAllObjects() in pycore_object.h (GH-18368) by Victor Stinner · 4 years, 8 months ago
  7. f58bd7c bpo-39542: Make PyObject_INIT() opaque in limited C API (GH-18363) by Victor Stinner · 4 years, 8 months ago
  8. f16433a bpo-39543: Remove unused _Py_Dealloc() macro (GH-18361) by Victor Stinner · 4 years, 8 months ago
  9. 40e547d bpo-39542: Make _Py_NewReference() opaque in C API (GH-18346) by Victor Stinner · 4 years, 8 months ago
  10. 49932fe bpo-39542: Simplify _Py_NewReference() (GH-18332) by Victor Stinner · 4 years, 8 months ago
  11. c6e5c11 bpo-39489: Remove COUNT_ALLOCS special build (GH-18259) by Victor Stinner · 4 years, 8 months ago
  12. 2a4903f bpo-38631: Add _Py_NO_RETURN to functions calling Py_FatalError() (GH-18278) by Victor Stinner · 4 years, 8 months ago
  13. 7a1f6c2 bpo-38631: Avoid Py_FatalError() in init_slotdefs() (GH-18263) by Victor Stinner · 4 years, 8 months ago
  14. 5eb8bff bpo-38631: Replace Py_FatalError() with _PyObject_ASSERT_FAILED_MSG() (GH-18258) by Victor Stinner · 4 years, 8 months ago
  15. 5428f48 Remove deadcode in _Py_inc_count() (GH-18257) by Victor Stinner · 4 years, 8 months ago
  16. 7247407 bpo-36854: Move _PyRuntimeState.gc to PyInterpreterState (GH-17287) by Victor Stinner · 4 years, 10 months ago
  17. bf17d41 bpo-37645: add new function _PyObject_FunctionStr() (GH-14890) by Jeroen Demeyer · 4 years, 11 months ago
  18. be434dc bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997) by Victor Stinner · 4 years, 11 months ago
  19. 36e33c3 bpo-38400 Don't check for NULL linked list pointers in _PyObject_IsFreed (GH-16630) by Pablo Galindo · 5 years ago
  20. 7775349 bpo-36389: Add newline to _PyObject_AssertFailed() (GH-16629) by Victor Stinner · 5 years ago
  21. 6876257 bpo-36389: _PyObject_CheckConsistency() available in release mode (GH-16612) by Victor Stinner · 5 years ago
  22. b39afb7 bpo-38070: Enhance _PyObject_Dump() (GH-16243) by Victor Stinner · 5 years ago
  23. c4cacc8 Fix typos in comments, docs and test names (#15018) by Min ho Kim · 5 years ago
  24. 3e54b57 bpo-37340: remove free_list for bound method objects (GH-14232) by Inada Naoki · 5 years ago
  25. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  26. ada319b bpo-32388: Remove cross-version binary compatibility requirement in tp_flags (GH-4944) by Antoine Pitrou · 5 years ago
  27. eb65e24 bpo-36922: implement PEP-590 Py_TPFLAGS_METHOD_DESCRIPTOR (GH-13338) by Jeroen Demeyer · 5 years ago
  28. 331a6a5 bpo-36763: Implement the PEP 587 (GH-13592) by Victor Stinner · 5 years ago
  29. 91f4380 bpo-36785: PEP 574 implementation (GH-7076) by Antoine Pitrou · 5 years ago
  30. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 5 years ago
  31. 871ff77 bpo-36763: Add _PyInitError functions (GH-13395) by Victor Stinner · 5 years ago
  32. 9646630 bpo-36766: Typos in docs and code comments (GH-13116) by penguindustin · 5 years ago
  33. 1a2252e bpo-36594: Fix incorrect use of %p in format strings (GH-12769) by Zackery Spytz · 5 years ago
  34. e0dcb85 bpo-36745: Fix a possible reference leak in PyObject_SetAttr() (GH-12993) by Zackery Spytz · 5 years ago
  35. 0fc91ee bpo-36389: Add _PyObject_CheckConsistency() function (GH-12803) by Victor Stinner · 5 years ago
  36. 4c409be bpo-36389: Change PyMem_SetupDebugHooks() constants (GH-12782) by Victor Stinner · 5 years ago
  37. 2b00db6 bpo-36389: _PyObject_IsFreed() now also detects uninitialized memory (GH-12770) by Victor Stinner · 5 years ago
  38. 364f0b0 bpo-35810: Incref heap-allocated types in PyObject_Init (GH-11661) by Eddie Elizondo · 5 years ago
  39. c11183c bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (gh-12359) by Eric Snow · 6 years ago
  40. 4d61e6e Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) (GH-12159) by Victor Stinner · 6 years ago
  41. bcfa450 bpo-36097: Use only public C-API in the_xxsubinterpreters module (adding as necessary). (#12003) by Eric Snow · 6 years ago
  42. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 6 years ago
  43. ab67281 bpo-35713: Reorganize sys module initialization (GH-11658) by Victor Stinner · 6 years ago
  44. 6d43f6f bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650) by Victor Stinner · 6 years ago
  45. 7211d30 Remove an unused variable after bpo-35444. (GH-11117) by Serhiy Storchaka · 6 years ago
  46. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 6 years ago
  47. 2cf5d32 bpo-9263: Fix _PyObject_Dump() for freed object (#10661) by Victor Stinner · 6 years ago
  48. f1d002c bpo-35059: Enhance _PyObject_AssertFailed() (GH-10642) by Victor Stinner · 6 years ago
  49. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  50. 6531bf6 bpo-33462: Add __reversed__ to dict and dict views (GH-6827) by Rémi Lapeyre · 6 years ago
  51. 50b4857 bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) by Victor Stinner · 6 years ago
  52. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  53. 3c09dca bpo-35059: Convert _Py_Dealloc() to static inline function (GH-10223) by Victor Stinner · 6 years ago
  54. 49c75a8 bpo-35064 prefix smelly symbols that appear with COUNT_ALLOCS with _Py_ (GH-10152) by Pablo Galindo · 6 years ago
  55. 2470204 bpo-9263: Use _PyObject_ASSERT() in object.c (GH-10110) by Victor Stinner · 6 years ago
  56. 3ec9af7 bpo-9263: _Py_NegativeRefcount() use _PyObject_AssertFailed() (GH-10109) by Victor Stinner · 6 years ago
  57. 626bff8 bpo-9263: Dump Python object on GC assertion failure (GH-10062) by Victor Stinner · 6 years ago
  58. 18618e65 bpo-35059: Add Py_STATIC_INLINE() macro (GH-10093) by Victor Stinner · 6 years ago
  59. 9e00e80 bpo-35053: Enhance tracemalloc to trace free lists (GH-10063) by Victor Stinner · 6 years ago
  60. 82af0b6 bpo-9263: _PyObject_Dump() detects freed memory (GH-10061) by Victor Stinner · 6 years ago
  61. ae62f01 bpo-34910: Ensure that PyObject_Print() always returns -1 on error. (GH-9733) by Zackery Spytz · 6 years ago
  62. e502451 closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) by Benjamin Peterson · 6 years ago
  63. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 6 years ago
  64. 5ac9e6e bpo-33597: Reduce PyGC_Head size (GH-7043) by INADA Naoki · 6 years ago
  65. d852142 Replace _PyGC_REFS macros with higher level macros (GH-6852) by INADA Naoki · 6 years ago
  66. 55edd0c bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030) by Siddhesh Poyarekar · 6 years ago
  67. 745dc65 closes bpo-32898: Fix debug build crash with COUNT_ALLOCS (GH-5800) by Eddie Elizondo · 7 years ago
  68. e76daeb bpo-32571: Fix reading uninitialized memory (GH-5332) by INADA Naoki · 7 years ago
  69. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 7 years ago
  70. f23746a bpo-32436: Implement PEP 567 (#5027) by Yury Selivanov · 7 years ago
  71. 378edee bpo-32544: Speed up hasattr() and getattr() (GH-5173) by INADA Naoki · 7 years ago
  72. 1fb72d2 bpo-32137: The repr of deeply nested dict now raises a RecursionError (#4570) by Serhiy Storchaka · 7 years ago
  73. 25420fe bpo-32030: Add more options to _PyCoreConfig (#4485) by Victor Stinner · 7 years ago
  74. dae0276 bpo-30860: Fix a refleak. (#3567) by Eric Snow · 7 years ago
  75. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 7 years ago
  76. 8728018 bpo-30860: Fix a refleak. (#3506) by Eric Snow · 7 years ago
  77. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  78. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  79. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 7 years ago
  80. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 7 years ago
  81. a66f9c6 bpo-30341: Improve _PyTrash_thread_destroy_chain() a little bit (#1545) by Xiang Zhang · 7 years ago
  82. 55fe1ae bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) by Serhiy Storchaka · 7 years ago
  83. 3e8d6cb bpo-29509: skip redundant intern (GH-197) by INADA Naoki · 8 years ago
  84. 5566bbb Issue #29263: LOAD_METHOD support for C methods by INADA Naoki · 8 years ago
  85. 2a404b6 Issue #28769: The result of PyUnicode_AsUTF8AndSize() and PyUnicode_AsUTF8() by Serhiy Storchaka · 8 years ago
  86. a8cb515 Rephrase !PyErr_Occurred() comment: may=>can by Victor Stinner · 8 years ago
  87. 5ab81d7 Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. by Serhiy Storchaka · 8 years ago
  88. f239213 Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes. by Yury Selivanov · 8 years ago
  89. f17c3de Use _PyObject_CallNoArg() by Victor Stinner · 8 years ago
  90. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  91. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  92. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  93. 3bd7900 merge 3.5 by Benjamin Peterson · 8 years ago
  94. db87c99 make sure dict view types are initialized by Benjamin Peterson · 8 years ago
  95. 742da04 Implement compact dict by Victor Stinner · 8 years ago
  96. 7e160ce Issue #23034: The output of a special Python build with defined COUNT_ALLOCS, by Serhiy Storchaka · 8 years ago
  97. e501a93 Issue #27125: Merge typo fixes from 3.5 by Martin Panter · 8 years ago
  98. 8d56c02 Issue #27125: Fix various errors like “will [be] inherited” by Martin Panter · 8 years ago
  99. 55c861f Issue #26745: Removed redundant code in _PyObject_GenericSetAttrWithDict. by Serhiy Storchaka · 8 years ago
  100. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago