1. 01b1cc1 bpo-36710: Add PyInterpreterState.runtime field (GH-17270) by Victor Stinner · 6 years ago
  2. b5e170f bpo-38644: Add _PyEval_EvalCode() (GH-17183) by Victor Stinner · 6 years ago
  3. 4d231bc bpo-38644: Add _PyObject_Call() (GH-17089) by Victor Stinner · 6 years ago
  4. b9e6812 bpo-38644: Add _PyEval_EvalFrame() with tstate (GH-17131) by Victor Stinner · 6 years ago
  5. bf17d41 bpo-37645: add new function _PyObject_FunctionStr() (GH-14890) by Jeroen Demeyer · 6 years ago
  6. 1726909 bpo-38644: Pass tstate to _Py_CheckFunctionResult() (GH-17050) by Victor Stinner · 6 years ago
  7. be434dc bpo-38644: Pass tstate to Py_EnterRecursiveCall() (GH-16997) by Victor Stinner · 6 years ago
  8. f4b1e3d bpo-38644: Add Py_EnterRecursiveCall() to the limited API (GH-17046) by Victor Stinner · 6 years ago
  9. f185a73 bpo-38310: Predict BUILD_MAP_UNPACK_WITH_CALL -> CALL_FUNCTION_EX. (GH-16467) by Brandt Bucher · 6 years ago
  10. 7a6873c bpo-37151: remove special case for PyCFunction from PyObject_Call (GH-14684) by Jeroen Demeyer · 6 years ago
  11. a511c7a bpo-38090: Fix reference leak in ceval.c (GH-15848) by Pablo Galindo · 6 years ago
  12. 65366bc bpo-20490: Improve circular import error message (GH-15308) by Anthony Sottile · 6 years ago
  13. 74b662c bpo-15088 : Remove PyGen_NeedsFinalizing() (GH-15702) by Joannah Nanjekye · 6 years ago
  14. ce6a070 bpo-34880: Add the LOAD_ASSERTION_ERROR opcode. (GH-15073) by Zackery Spytz · 6 years ago
  15. 0567786 bpo-37540: vectorcall: keyword names must be strings (GH-14682) by Jeroen Demeyer · 6 years ago
  16. 59ad110 bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) by Jeroen Demeyer · 6 years ago
  17. 0d722f3 bpo-36974: separate vectorcall functions for each calling convention (GH-13781) by Jeroen Demeyer · 6 years ago
  18. 196a530 bpo-37483: add _PyObject_CallOneArg() function (#14558) by Jeroen Demeyer · 6 years ago
  19. 469d1a7 bpo-37484: use _PyObject_Vectorcall for __exit__ (GH-14557) by Jeroen Demeyer · 6 years ago
  20. c8a3541 bpo-35224: Reverse evaluation order of key: value in dict comprehensions (GH-14139) by Jörn Heissler · 6 years ago
  21. 7e1a9aa bpo-37151: remove _PyCFunction_FastCallDict (GH-14269) by Jeroen Demeyer · 6 years ago
  22. b2f9473 bpo-37249: add declaration of _PyObject_GetMethod (GH-14015) by Jeroen Demeyer · 6 years ago
  23. 838f264 bpo-36710: Pass explicitly tstate in sysmodule.c (GH-14060) by Victor Stinner · 6 years ago
  24. 0fd2c30 Revert "bpo-36818: Add PyInterpreterState.runtime field. (gh-13129)" (GH-13795) by Victor Stinner · 6 years ago
  25. eddef86 bpo-37146: disable opcache when Py_DEBUG is defined (GH-13787) by Inada Naoki · 6 years ago
  26. e225beb Revert "bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714)" (GH-13780) by Victor Stinner · 6 years ago
  27. 395420e bpo-26219: remove unused code (GH-13775) by Inada Naoki · 6 years ago
  28. 91234a1 bpo-26219: per opcode cache for LOAD_GLOBAL (GH-12884) by Inada Naoki · 6 years ago
  29. 6a150bc bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-13714) by Eric Snow · 6 years ago
  30. cd74e66 bpo-37122: Make co->co_argcount represent the total number of positonal arguments in the code object (GH-13726) by Pablo Galindo · 6 years ago
  31. 396e0a8 bpo-36818: Add PyInterpreterState.runtime field. (gh-13129) by Eric Snow · 6 years ago
  32. 37788bc bpo-36974: rename _FastCallKeywords -> _Vectorcall (GH-13653) by Jeroen Demeyer · 6 years ago
  33. aacc77f bpo-36974: implement PEP 590 (GH-13185) by Jeroen Demeyer · 6 years ago
  34. 3880f26 bpo-36933: Remove sys.set_coroutine_wrapper (marked for removal in 3.8) (GH-13577) by Matthias Bussonnier · 6 years ago
  35. 438a12d bpo-36710: Add tstate parameter in ceval.c (GH-13547) by Victor Stinner · 6 years ago
  36. b82e17e bpo-36842: Implement PEP 578 (GH-12613) by Steve Dower · 6 years ago
  37. d5d9e81 bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241) by Victor Stinner · 6 years ago
  38. 09532fe bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934) by Victor Stinner · 6 years ago
  39. 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 · 6 years ago
  40. 9a4135e bpo-36817: Add f-string debugging using '='. (GH-13123) by Eric V. Smith · 6 years ago
  41. c664b34 bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068) by Victor Stinner · 6 years ago
  42. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 6 years ago
  43. 99fcc61 Revert "bpo-36356: Destroy the GIL at exit (GH-12453)" (GH613006) by Victor Stinner · 6 years ago
  44. b36e5d6 bpo-36356: Destroy the GIL at exit (GH-12453) by Victor Stinner · 6 years ago
  45. f781d20 bpo-36475: Finalize PyEval_AcquireLock() and PyEval_AcquireThread() properly (GH-12667) by Joannah Nanjekye · 6 years ago
  46. b021ba5 Fix typo in 'tandem' word (GH-12998) (GH-12998) by Andrey · 6 years ago
  47. 5c75f37 bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853) by Victor Stinner · 6 years ago
  48. b75b1a35 bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()." (gh-12806) by Eric Snow · 6 years ago
  49. f13c5c8 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12360) by Eric Snow · 6 years ago
  50. 027b09c bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504) by Stefan Krah · 6 years ago
  51. a712679 bpo-36333, bpo-36356: Fix _PyEval_FiniThreads() (GH-12432) by Victor Stinner · 6 years ago
  52. 842a2f0 bpo-33608: Deal with pending calls relative to runtime shutdown. (gh-12246) by Eric Snow · 6 years ago
  53. e3f4070 bpo-33608: Fix PyEval_InitThreads() warning (GH-12346) by Victor Stinner · 6 years ago
  54. 8479a34 bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245) by Eric Snow · 6 years ago
  55. 5be45a6 bpo-33608: Minor cleanup related to pending calls. (gh-12247) by Eric Snow · 6 years ago
  56. 7bda9de Simplify DISPATCH by hoisting eval_breaker ahead of time. (gh-12243) by Eric Snow · 6 years ago
  57. 4d61e6e Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) (GH-12159) by Victor Stinner · 6 years ago
  58. bda918bf bpo-33608: Simplify ceval's DISPATCH by hoisting eval_breaker ahead of time. (gh-12062) by Eric Snow · 6 years ago
  59. 234531b bpo-36030: Add _PyTuple_FromArray() function (GH-11954) by Sergey Fedoseev · 6 years ago
  60. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 6 years ago
  61. ef4ac96 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) by Eric Snow · 6 years ago
  62. 64d6cc8 bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-11530) by Eric Snow · 6 years ago
  63. 001fee1 bpo-12822: use monotonic clock for condvar if possible (GH-11723) by Inada Naoki · 6 years ago
  64. f1ec3ce bpo-35634: Raise an error when first passed kwargs contains duplicated keys. (GH-11438) by Serhiy Storchaka · 7 years ago
  65. fdf282d bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972) by Eric Snow · 7 years ago
  66. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 7 years ago
  67. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 7 years ago
  68. 99d56b5 bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033) by Zackery Spytz · 7 years ago
  69. ec13b93 bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705) by Victor Stinner · 7 years ago
  70. bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) by Victor Stinner · 7 years ago
  71. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 7 years ago
  72. d17a693 bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434) by Victor Stinner · 7 years ago
  73. 50b4857 bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) by Victor Stinner · 7 years ago
  74. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 7 years ago
  75. 9204fb8 bpo-35081: Cleanup pystate.c and pystate.h (GH-10240) by Victor Stinner · 7 years ago
  76. 3bd0d62 Fix typos in comments (GH-9905) by Quan Tian · 7 years ago
  77. eef0596 bpo-31370: Remove references to threadless builds (#8805) by Zackery Spytz · 7 years ago
  78. e89de73 bpo-34125: Enable profiling of method_descriptor in all cases (GH-8416) by jdemeyer · 7 years ago
  79. ddd1949 closes bpo-34673: Tweaks to make ceval more editable. (GH-9289) by Benjamin Peterson · 7 years ago
  80. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 7 years ago
  81. 8ed317f bpo-34113: Fix a crash when using LLTRACE is on (GH-8517) by costypetrisor · 7 years ago
  82. 147d955 bpo-34190: Fix reference leak in call_function() (GH-8413) by jdemeyer · 7 years ago
  83. 56868f9 bpo-34126: Fix crashes while profiling invalid calls. (GH-8300) by jdemeyer · 7 years ago
  84. 3f4d90d bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. (GH-8159) by Serhiy Storchaka · 7 years ago
  85. 3a9ccee bpo-29673: fix gdb scripts pystack and pystackv (GH-6126) by Marcel Plch · 7 years ago
  86. a68f2f0 bpo-29922: Improve error messages in 'async with' (GH-6352) by Serhiy Storchaka · 7 years ago
  87. d8b291a bpo-32932: More revealing error message when non-str objects in __all__ (GH-5848) by Xiang Zhang · 7 years ago
  88. 702f8f3 bpo-33041: Rework compiling an "async for" loop. (#6142) by Serhiy Storchaka · 7 years ago
  89. 520b7ae bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter to compiler. (GH-5006) by Serhiy Storchaka · 7 years ago
  90. 332cd5e bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181) by Mark Shannon · 8 years ago
  91. 2914bb3 bpo-20891: Py_Initialize() now creates the GIL (#4700) by Victor Stinner · 8 years ago
  92. 997478e bpo-32688: Make why the line is commented out clear (GH-5405) by Xiang Zhang · 8 years ago
  93. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 8 years ago
  94. fc2f407 bpo-32591: Add native coroutine origin tracking (#5250) by Nathaniel J. Smith · 8 years ago
  95. 13a6c09 bpo-32259: Make a TypeError message when unpack non-iterable more specific. (#4903) by Serhiy Storchaka · 8 years ago
  96. a5552f0 bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746) by Serhiy Storchaka · 8 years ago
  97. 1896793 bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098) by pdox · 8 years ago
  98. 95f1a7b remove support for splitting the ceval switch into multiple switches (#4099) by Benjamin Peterson · 8 years ago
  99. ae3087c Move exc state to generator. Fixes bpo-25612 (#1773) by Mark Shannon · 8 years ago
  100. 20faa68 Move opcode tracing to occur after the possible update to f_lineno. (GH-3798) by George King · 8 years ago