1. 384621c bpo-41078: Rename pycore_tupleobject.h to pycore_tuple.h (GH-21056) by Victor Stinner · 4 years, 1 month ago
  2. 33faf5c bpo-40925: Remove unused stack macro SET_VALUE (GH-20783) by Dong-hee Na · 4 years, 2 months ago
  3. 1bcc32f bpo-39465: Use _PyInterpreterState_GET() (GH-20788) by Victor Stinner · 4 years, 2 months ago
  4. 232dda6 bpo-40679: Fix _PyEval_EvalCode() crash if qualname is NULL (GH-20615) by Victor Stinner · 4 years, 2 months ago
  5. 317bab0 PyOS_AfterFork_Child() pass tstate to _PyEval_ReInitThreads() (GH-20598) by Victor Stinner · 4 years, 2 months ago
  6. 26881c8 PyOS_AfterFork_Child() uses PyStatus (GH-20596) by Victor Stinner · 4 years, 2 months ago
  7. 3026cad bpo-40826: Add _Py_EnsureTstateNotNULL() macro (GH-20571) by Victor Stinner · 4 years, 2 months ago
  8. b5cc208 bpo-40679: Use the function's qualname in certain TypeErrors (GH-20236) by Dennis Sweeney · 4 years, 2 months ago
  9. 4a12d12 Fix typo in code comment in main_loop label. (GH-20068) by Chris Jerdonek · 4 years, 3 months ago
  10. 4c9ea09 bpo-38787: Add PyCFunction_CheckExact() macro for exact type checks (GH-20024) by scoder · 4 years, 3 months ago
  11. 4804b5b bpo-39465: Don't access directly _Py_Identifier members (GH-20043) by Victor Stinner · 4 years, 3 months ago
  12. 7be4e35 bpo-40513: Per-interpreter GIL (GH-19943) by Victor Stinner · 4 years, 3 months ago
  13. e838a93 bpo-40522: _PyThreadState_Swap() sets autoTSSkey (GH-19939) by Victor Stinner · 4 years, 3 months ago
  14. 299b8c6 Revert "bpo-40513: Per-interpreter signals pending (GH-19924)" (GH-19932) by Victor Stinner · 4 years, 3 months ago
  15. 4e30ed3 bpo-40513: Per-interpreter recursion_limit (GH-19929) by Victor Stinner · 4 years, 3 months ago
  16. 0b1e330 bpo-40513: Per-interpreter gil_drop_request (GH-19927) by Victor Stinner · 4 years, 3 months ago
  17. 4e01946 bpo-40513: Per-interpreter signals pending (GH-19924) by Victor Stinner · 4 years, 3 months ago
  18. 6d86a23 bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772) by Victor Stinner · 4 years, 3 months ago
  19. 2510494 bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691) by Victor Stinner · 4 years, 3 months ago
  20. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 4 months ago
  21. 62183b8 bpo-40268: Remove explicit pythread.h includes (#19529) by Victor Stinner · 4 years, 4 months ago
  22. e560f90 bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515) by Victor Stinner · 4 years, 4 months ago
  23. 62f75fe bpo-40232: Update PyOS_AfterFork_Child() to use _PyThread_at_fork_reinit() (GH-19450) by Dong-hee Na · 4 years, 4 months ago
  24. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 4 years, 4 months ago
  25. 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 4 years, 4 months ago
  26. b54a99d bpo-40082: trip_signal() uses the main interpreter (GH-19441) by Victor Stinner · 4 years, 4 months ago
  27. cfc3c2f bpo-37127: Remove _pending_calls.finishing (GH-19439) by Victor Stinner · 4 years, 4 months ago
  28. dda5d6e bpo-40226: PyInterpreterState_Delete() deletes pending calls (GH-19436) by Victor Stinner · 4 years, 4 months ago
  29. a15e260 bpo-40170: Add _PyIndex_Check() internal function (GH-19426) by Victor Stinner · 4 years, 4 months ago
  30. 1c1e68c bpo-38644: Use _PySys_Audit(): pass tstate explicitly (GH-19183) by Victor Stinner · 4 years, 4 months ago
  31. 7281898 bpo-38644: Pass tstate explicitly in signalmodule.c (GH-19184) by Victor Stinner · 4 years, 4 months ago
  32. 79ceccd bpo-38410: Properly handle PySys_Audit() failures (GH-16657) by Zackery Spytz · 4 years, 4 months ago
  33. 6723e93 bpo-39946: Remove _PyThreadState_GetFrame (GH-19094) by Victor Stinner · 4 years, 4 months ago
  34. d831688 bpo-40010: Optimize pending calls in multithreaded applications (GH-19091) by Victor Stinner · 4 years, 4 months ago
  35. d2a8e5b bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087) by Victor Stinner · 4 years, 4 months ago
  36. da2914d bpo-40010: Pass tstate to ceval GIL functions (GH-19077) by Victor Stinner · 4 years, 4 months ago
  37. 5a3a71d bpo-40010: Optimize signal handling in multithreaded applications (GH-19067) by Victor Stinner · 4 years, 4 months ago
  38. 50e6e99 bpo-39984: Move pending calls to PyInterpreterState (GH-19066) by Victor Stinner · 4 years, 5 months ago
  39. 8849e59 bpo-39984: trip_signal() uses PyGILState_GetThisThreadState() (GH-19061) by Victor Stinner · 4 years, 5 months ago
  40. 56bfdeb bpo-39984: Pass tstate to _PyEval_SignalAsyncExc() (GH-19049) by Victor Stinner · 4 years, 5 months ago
  41. 23ef89d bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051) by Victor Stinner · 4 years, 5 months ago
  42. d7fabc1 bpo-39984: Pass tstate to handle_signals() (GH-19050) by Victor Stinner · 4 years, 5 months ago
  43. dab8423 bpo-39984: Add PyInterpreterState.ceval (GH-19047) by Victor Stinner · 4 years, 5 months ago
  44. f6a5850 bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977) by Victor Stinner · 4 years, 5 months ago
  45. 309d7cc bpo-35370: Add _PyEval_SetTrace() function (GH-18975) by Victor Stinner · 4 years, 5 months ago
  46. 0b72b23 bpo-38500: Add _PyInterpreterState_SetEvalFrameFunc() (GH-17340) by Victor Stinner · 4 years, 5 months ago
  47. b4698ec bpo-39877: Deprecate PyEval_InitThreads() (GH-18892) by Victor Stinner · 4 years, 5 months ago
  48. 175a704 bpo-39877: PyGILState_Ensure() don't call PyEval_InitThreads() (GH-18891) by Victor Stinner · 4 years, 5 months ago
  49. 85f5a69 bpo-39877: Refactor take_gil() function (GH-18885) by Victor Stinner · 4 years, 5 months ago
  50. 111e4ee bpo-39877: Py_Initialize() pass tstate to PyEval_InitThreads() (GH-18884) by Victor Stinner · 4 years, 5 months ago
  51. 3225b9f bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883) by Victor Stinner · 4 years, 5 months ago
  52. eb4e2ae bpo-39877: Fix PyEval_RestoreThread() for daemon threads (GH-18811) by Victor Stinner · 4 years, 5 months ago
  53. 9e5d30c bpo-39882: Py_FatalError() logs the function name (GH-18819) by Victor Stinner · 4 years, 5 months ago
  54. 7b3c252 bpo-39877: _PyRuntimeState.finalizing becomes atomic (GH-18816) by Victor Stinner · 4 years, 5 months ago
  55. dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 4 years, 5 months ago
  56. baf29b2 Reuse identifier of PREDICT macros as PREDICT_ID (GH-17155) by Denis Chernikov · 4 years, 5 months ago
  57. e6be9b5 closes bpo-39605: Fix some casts to not cast away const. (GH-18453) by Andy Lester · 4 years, 6 months ago
  58. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 6 months ago
  59. 60ac6ed bpo-39573: Use Py_SET_SIZE() function (GH-18402) by Victor Stinner · 4 years, 6 months ago
  60. a102ed7 bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391) by Victor Stinner · 4 years, 6 months ago
  61. 46874c2 bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) by Hai Shi · 4 years, 6 months ago
  62. 17c68b8 bpo-38631: Replace Py_FatalError() with assert() in ceval.c (GH-18279) by Victor Stinner · 4 years, 6 months ago
  63. aabdeb7 bpo-38960: DTrace build fix for FreeBSD. (GH-17451) by David Carlier · 4 years, 6 months ago
  64. 61f4db8 bpo-38644: Pass tstate in ceval.c (GH-18222) by Victor Stinner · 4 years, 6 months ago
  65. 8a4cd70 bpo-39320: Handle unpacking of **values in compiler (GH-18141) by Mark Shannon · 4 years, 6 months ago
  66. 13bc139 bpo-39320: Handle unpacking of *values in compiler (GH-17984) by Mark Shannon · 4 years, 6 months ago
  67. 1d1b97a bpo-39048: Look up __aenter__ before __aexit__ in async with (GH-17609) by Géry Ogam · 4 years, 7 months ago
  68. 9af0e47 bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754) by Mark Shannon · 4 years, 7 months ago
  69. 2b1df45 bpo-38644: Pass tstate to _Py_FinishPendingCalls() (GH-17990) by Victor Stinner · 4 years, 7 months ago
  70. e7c9f4a Cleanup exit code for interpreter. (GH-17756) by Mark Shannon · 4 years, 7 months ago
  71. 4c53e63 bpo-39166: Fix trace of last iteration of async for loops (#17800) by Pablo Galindo · 4 years, 7 months ago
  72. 04ec7a1 bpo-39114: Fix tracing of except handlers with name binding (GH-17769) by Pablo Galindo · 4 years, 7 months ago
  73. fee5526 Produce cleaner bytecode for 'with' and 'async with' by generating separate code for normal and exceptional paths. (#6641) by Mark Shannon · 4 years, 8 months ago
  74. 01b1cc1 bpo-36710: Add PyInterpreterState.runtime field (GH-17270) by Victor Stinner · 4 years, 9 months ago
  75. b5e170f bpo-38644: Add _PyEval_EvalCode() (GH-17183) by Victor Stinner · 4 years, 9 months ago
  76. 4d231bc bpo-38644: Add _PyObject_Call() (GH-17089) by Victor Stinner · 4 years, 9 months ago
  77. b9e6812 bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131) by Victor Stinner · 4 years, 9 months ago
  78. bf17d41 bpo-37645: add new function _PyObject_FunctionStr() (GH-14890) by Jeroen Demeyer · 4 years, 9 months ago
  79. 1726909 bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050) by Victor Stinner · 4 years, 9 months ago
  80. be434dc bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997) by Victor Stinner · 4 years, 9 months ago
  81. f4b1e3d bpo-38644: Add Py_EnterRecursiveCall() to the limited API (GH-17046) by Victor Stinner · 4 years, 9 months ago
  82. f185a73 bpo-38310: Predict BUILD_MAP_UNPACK_WITH_CALL -> CALL_FUNCTION_EX. (GH-16467) by Brandt Bucher · 4 years, 10 months ago
  83. 7a6873c bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684) by Jeroen Demeyer · 4 years, 11 months ago
  84. a511c7a bpo-38090: Fix reference leak in ceval.c (GH-15848) by Pablo Galindo · 5 years ago
  85. 65366bc bpo-20490: Improve circular import error message (GH-15308) by Anthony Sottile · 5 years ago
  86. 74b662c bpo-15088 : Remove PyGen_NeedsFinalizing() (GH-15702) by Joannah Nanjekye · 5 years ago
  87. ce6a070 bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073) by Zackery Spytz · 5 years ago
  88. 0567786 bpo-37540: vectorcall: keyword names must be strings (GH-14682) by Jeroen Demeyer · 5 years ago
  89. 59ad110 bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) by Jeroen Demeyer · 5 years ago
  90. 0d722f3 bpo-36974: separate vectorcall functions for each calling convention (GH-13781) by Jeroen Demeyer · 5 years ago
  91. 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 5 years ago
  92. 469d1a7 bpo-37484: use _PyObject_Vectorcall for __exit__ (GH-14557) by Jeroen Demeyer · 5 years ago
  93. c8a3541 bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-14139) by Jörn Heissler · 5 years ago
  94. 7e1a9aa bpo-37151: remove _PyCFunction_FastCallDict (GH-14269) by Jeroen Demeyer · 5 years ago
  95. b2f9473 bpo-37249: add declaration of _PyObject_GetMethod (GH-14015) by Jeroen Demeyer · 5 years ago
  96. 838f264 bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060) by Victor Stinner · 5 years ago
  97. 0fd2c30 Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795) by Victor Stinner · 5 years ago
  98. eddef86 bpo-37146: disable opcache when Py_DEBUG is defined (GH-13787) by Inada Naoki · 5 years ago
  99. e225beb Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714)" (GH-13780) by Victor Stinner · 5 years ago
  100. 395420e bpo-26219: remove unused code (GH-13775) by Inada Naoki · 5 years ago