1. 6d86a23 bpo-40429: PyFrame_GetCode() result cannot be NULL (GH-19772) by Victor Stinner · 4 years, 3 months ago
  2. 2510494 bpo-40048: Fix _PyCode_InitOpcache() error path (GH-19691) by Victor Stinner · 4 years, 3 months ago
  3. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 3 months ago
  4. 62183b8 bpo-40268: Remove explicit pythread.h includes (#19529) by Victor Stinner · 4 years, 3 months ago
  5. e560f90 bpo-40268: Move struct _gc_runtime_state to pycore_gc.h (GH-19515) by Victor Stinner · 4 years, 3 months ago
  6. 62f75fe bpo-40232: Update PyOS_AfterFork_Child() to use _PyThread_at_fork_reinit() (GH-19450) by Dong-hee Na · 4 years, 3 months ago
  7. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 4 years, 3 months ago
  8. 81a7be3 bpo-40268: Rename _PyInterpreterState_GET_UNSAFE() (GH-19509) by Victor Stinner · 4 years, 3 months ago
  9. b54a99d bpo-40082: trip_signal() uses the main interpreter (GH-19441) by Victor Stinner · 4 years, 3 months ago
  10. cfc3c2f bpo-37127: Remove _pending_calls.finishing (GH-19439) by Victor Stinner · 4 years, 3 months ago
  11. dda5d6e bpo-40226: PyInterpreterState_Delete() deletes pending calls (GH-19436) by Victor Stinner · 4 years, 3 months ago
  12. a15e260 bpo-40170: Add _PyIndex_Check() internal function (GH-19426) by Victor Stinner · 4 years, 3 months ago
  13. 1c1e68c bpo-38644: Use _PySys_Audit(): pass tstate explicitly (GH-19183) by Victor Stinner · 4 years, 4 months ago
  14. 7281898 bpo-38644: Pass tstate explicitly in signalmodule.c (GH-19184) by Victor Stinner · 4 years, 4 months ago
  15. 79ceccd bpo-38410: Properly handle PySys_Audit() failures (GH-16657) by Zackery Spytz · 4 years, 4 months ago
  16. 6723e93 bpo-39946: Remove _PyThreadState_GetFrame (GH-19094) by Victor Stinner · 4 years, 4 months ago
  17. d831688 bpo-40010: Optimize pending calls in multithreaded applications (GH-19091) by Victor Stinner · 4 years, 4 months ago
  18. d2a8e5b bpo-40010: COMPUTE_EVAL_BREAKER() checks for subinterpreter (GH-19087) by Victor Stinner · 4 years, 4 months ago
  19. da2914d bpo-40010: Pass tstate to ceval GIL functions (GH-19077) by Victor Stinner · 4 years, 4 months ago
  20. 5a3a71d bpo-40010: Optimize signal handling in multithreaded applications (GH-19067) by Victor Stinner · 4 years, 4 months ago
  21. 50e6e99 bpo-39984: Move pending calls to PyInterpreterState (GH-19066) by Victor Stinner · 4 years, 4 months ago
  22. 8849e59 bpo-39984: trip_signal() uses PyGILState_GetThisThreadState() (GH-19061) by Victor Stinner · 4 years, 4 months ago
  23. 56bfdeb bpo-39984: Pass tstate to _PyEval_SignalAsyncExc() (GH-19049) by Victor Stinner · 4 years, 4 months ago
  24. 23ef89d bpo-39984: _PyThreadState_DeleteCurrent() takes tstate (GH-19051) by Victor Stinner · 4 years, 4 months ago
  25. d7fabc1 bpo-39984: Pass tstate to handle_signals() (GH-19050) by Victor Stinner · 4 years, 4 months ago
  26. dab8423 bpo-39984: Add PyInterpreterState.ceval (GH-19047) by Victor Stinner · 4 years, 4 months ago
  27. f6a5850 bpo-35370: PyEval_SetTrace() logs unraisable error (GH-18977) by Victor Stinner · 4 years, 4 months ago
  28. 309d7cc bpo-35370: Add _PyEval_SetTrace() function (GH-18975) by Victor Stinner · 4 years, 4 months ago
  29. 0b72b23 bpo-38500: Add _PyInterpreterState_SetEvalFrameFunc() (GH-17340) by Victor Stinner · 4 years, 4 months ago
  30. b4698ec bpo-39877: Deprecate PyEval_InitThreads() (GH-18892) by Victor Stinner · 4 years, 4 months ago
  31. 175a704 bpo-39877: PyGILState_Ensure() don't call PyEval_InitThreads() (GH-18891) by Victor Stinner · 4 years, 4 months ago
  32. 85f5a69 bpo-39877: Refactor take_gil() function (GH-18885) by Victor Stinner · 4 years, 4 months ago
  33. 111e4ee bpo-39877: Py_Initialize() pass tstate to PyEval_InitThreads() (GH-18884) by Victor Stinner · 4 years, 4 months ago
  34. 3225b9f bpo-39877: Remove useless PyEval_InitThreads() calls (GH-18883) by Victor Stinner · 4 years, 4 months ago
  35. eb4e2ae bpo-39877: Fix PyEval_RestoreThread() for daemon threads (GH-18811) by Victor Stinner · 4 years, 4 months ago
  36. 9e5d30c bpo-39882: Py_FatalError() logs the function name (GH-18819) by Victor Stinner · 4 years, 4 months ago
  37. 7b3c252 bpo-39877: _PyRuntimeState.finalizing becomes atomic (GH-18816) by Victor Stinner · 4 years, 4 months ago
  38. dffe4c0 bpo-39573: Finish converting to new Py_IS_TYPE() macro (GH-18601) by Andy Lester · 4 years, 4 months ago
  39. baf29b2 Reuse identifier of PREDICT macros as PREDICT_ID (GH-17155) by Denis Chernikov · 4 years, 5 months ago
  40. e6be9b5 closes bpo-39605: Fix some casts to not cast away const. (GH-18453) by Andy Lester · 4 years, 5 months ago
  41. ffd9753 bpo-39245: Switch to public API for Vectorcall (GH-18460) by Petr Viktorin · 4 years, 5 months ago
  42. 60ac6ed bpo-39573: Use Py_SET_SIZE() function (GH-18402) by Victor Stinner · 4 years, 5 months ago
  43. a102ed7 bpo-39573: Use Py_TYPE() macro in Python and Include directories (GH-18391) by Victor Stinner · 4 years, 5 months ago
  44. 46874c2 bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) by Hai Shi · 4 years, 6 months ago
  45. 17c68b8 bpo-38631: Replace Py_FatalError() with assert() in ceval.c (GH-18279) by Victor Stinner · 4 years, 6 months ago
  46. aabdeb7 bpo-38960: DTrace build fix for FreeBSD. (GH-17451) by David Carlier · 4 years, 6 months ago
  47. 61f4db8 bpo-38644: Pass tstate in ceval.c (GH-18222) by Victor Stinner · 4 years, 6 months ago
  48. 8a4cd70 bpo-39320: Handle unpacking of **values in compiler (GH-18141) by Mark Shannon · 4 years, 6 months ago
  49. 13bc139 bpo-39320: Handle unpacking of *values in compiler (GH-17984) by Mark Shannon · 4 years, 6 months ago
  50. 1d1b97a bpo-39048: Look up __aenter__ before __aexit__ in async with (GH-17609) by Géry Ogam · 4 years, 6 months ago
  51. 9af0e47 bpo-39156: Break up COMPARE_OP into four logically distinct opcodes. (GH-17754) by Mark Shannon · 4 years, 6 months ago
  52. 2b1df45 bpo-38644: Pass tstate to _Py_FinishPendingCalls() (GH-17990) by Victor Stinner · 4 years, 6 months ago
  53. e7c9f4a Cleanup exit code for interpreter. (GH-17756) by Mark Shannon · 4 years, 6 months ago
  54. 4c53e63 bpo-39166: Fix trace of last iteration of async for loops (#17800) by Pablo Galindo · 4 years, 6 months ago
  55. 04ec7a1 bpo-39114: Fix tracing of except handlers with name binding (GH-17769) by Pablo Galindo · 4 years, 6 months ago
  56. 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
  57. 01b1cc1 bpo-36710: Add PyInterpreterState.runtime field (GH-17270) by Victor Stinner · 4 years, 8 months ago
  58. b5e170f bpo-38644: Add _PyEval_EvalCode() (GH-17183) by Victor Stinner · 4 years, 8 months ago
  59. 4d231bc bpo-38644: Add _PyObject_Call() (GH-17089) by Victor Stinner · 4 years, 8 months ago
  60. b9e6812 bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131) by Victor Stinner · 4 years, 8 months ago
  61. bf17d41 bpo-37645: add new function _PyObject_FunctionStr() (GH-14890) by Jeroen Demeyer · 4 years, 8 months ago
  62. 1726909 bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050) by Victor Stinner · 4 years, 8 months ago
  63. be434dc bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997) by Victor Stinner · 4 years, 8 months ago
  64. f4b1e3d bpo-38644: Add Py_EnterRecursiveCall() to the limited API (GH-17046) by Victor Stinner · 4 years, 8 months ago
  65. f185a73 bpo-38310: Predict BUILD_MAP_UNPACK_WITH_CALL -> CALL_FUNCTION_EX. (GH-16467) by Brandt Bucher · 4 years, 10 months ago
  66. 7a6873c bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684) by Jeroen Demeyer · 4 years, 10 months ago
  67. a511c7a bpo-38090: Fix reference leak in ceval.c (GH-15848) by Pablo Galindo · 4 years, 10 months ago
  68. 65366bc bpo-20490: Improve circular import error message (GH-15308) by Anthony Sottile · 4 years, 10 months ago
  69. 74b662c bpo-15088 : Remove PyGen_NeedsFinalizing() (GH-15702) by Joannah Nanjekye · 4 years, 10 months ago
  70. ce6a070 bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073) by Zackery Spytz · 4 years, 11 months ago
  71. 0567786 bpo-37540: vectorcall: keyword names must be strings (GH-14682) by Jeroen Demeyer · 5 years ago
  72. 59ad110 bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) by Jeroen Demeyer · 5 years ago
  73. 0d722f3 bpo-36974: separate vectorcall functions for each calling convention (GH-13781) by Jeroen Demeyer · 5 years ago
  74. 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 5 years ago
  75. 469d1a7 bpo-37484: use _PyObject_Vectorcall for __exit__ (GH-14557) by Jeroen Demeyer · 5 years ago
  76. c8a3541 bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-14139) by Jörn Heissler · 5 years ago
  77. 7e1a9aa bpo-37151: remove _PyCFunction_FastCallDict (GH-14269) by Jeroen Demeyer · 5 years ago
  78. b2f9473 bpo-37249: add declaration of _PyObject_GetMethod (GH-14015) by Jeroen Demeyer · 5 years ago
  79. 838f264 bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060) by Victor Stinner · 5 years ago
  80. 0fd2c30 Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795) by Victor Stinner · 5 years ago
  81. eddef86 bpo-37146: disable opcache when Py_DEBUG is defined (GH-13787) by Inada Naoki · 5 years ago
  82. e225beb Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714)" (GH-13780) by Victor Stinner · 5 years ago
  83. 395420e bpo-26219: remove unused code (GH-13775) by Inada Naoki · 5 years ago
  84. 91234a1 bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884) by Inada Naoki · 5 years ago
  85. 6a150bc bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714) by Eric Snow · 5 years ago
  86. cd74e66 bpo-37122: Make co->co_argcount represent the total number of positonal arguments in the code object (GH-13726) by Pablo Galindo · 5 years ago
  87. 396e0a8 bpo-36818: Add PyInterpreterState.runtime field. (gh-13129) by Eric Snow · 5 years ago
  88. 37788bc bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653) by Jeroen Demeyer · 5 years ago
  89. aacc77f bpo-36974: implement PEP 590 (GH-13185) by Jeroen Demeyer · 5 years ago
  90. 3880f26 bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-13577) by Matthias Bussonnier · 5 years ago
  91. 438a12d bpo-36710: Add tstate parameter in ceval.c (GH-13547) by Victor Stinner · 5 years ago
  92. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 5 years ago
  93. d5d9e81 bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241) by Victor Stinner · 5 years ago
  94. 09532fe bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934) by Victor Stinner · 5 years ago
  95. f00828a bpo-36851: Clean the frame stack if the execution ends with a return and the stack is not empty (GH-13191) by Pablo Galindo · 5 years ago
  96. 9a4135e bpo-36817: Add f-string debugging using '='. (GH-13123) by Eric V. Smith · 5 years ago
  97. c664b34 bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068) by Victor Stinner · 5 years ago
  98. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 5 years ago
  99. 99fcc61 Revert "bpo-36356: Destroy the GIL at exit (GH-12453)" (GH613006) by Victor Stinner · 5 years ago
  100. b36e5d6 bpo-36356: Destroy the GIL at exit (GH-12453) by Victor Stinner · 5 years ago