1. d5d9e81 bpo-36728: Remove PyEval_ReInitThreads() from C API (GH-13241) by Victor Stinner · 5 years ago
  2. 09532fe bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934) by Victor Stinner · 5 years ago
  3. 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
  4. 9a4135e bpo-36817: Add f-string debugging using '='. (GH-13123) by Eric V. Smith · 5 years ago
  5. c664b34 bpo-36475: Make PyThread_exit_thread with _Py_NO_RETURN (GH-13068) by Victor Stinner · 5 years ago
  6. 8c77b8c bpo-36540: PEP 570 -- Implementation (GH-12701) by Pablo Galindo · 5 years ago
  7. 99fcc61 Revert "bpo-36356: Destroy the GIL at exit (GH-12453)" (GH613006) by Victor Stinner · 5 years ago
  8. b36e5d6 bpo-36356: Destroy the GIL at exit (GH-12453) by Victor Stinner · 5 years ago
  9. f781d20 bpo-36475: Finalize PyEval_AcquireLock() and PyEval_AcquireThread() properly (GH-12667) by Joannah Nanjekye · 5 years ago
  10. b021ba5 Fix typo in 'tandem' word (GH-12998) (GH-12998) by Andrey · 5 years ago
  11. 5c75f37 bpo-36635: Change pyport.h for Py_BUILD_CORE_MODULE define (GH-12853) by Victor Stinner · 5 years ago
  12. b75b1a35 bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()." (gh-12806) by Eric Snow · 5 years ago
  13. f13c5c8 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12360) by Eric Snow · 5 years ago
  14. 027b09c bpo-36370: Check for PyErr_Occurred() after PyImport_GetModule() (GH-12504) by Stefan Krah · 5 years ago
  15. a712679 bpo-36333, bpo-36356: Fix _PyEval_FiniThreads() (GH-12432) by Victor Stinner · 5 years ago
  16. 842a2f0 bpo-33608: Deal with pending calls relative to runtime shutdown. (gh-12246) by Eric Snow · 5 years ago
  17. e3f4070 bpo-33608: Fix PyEval_InitThreads() warning (GH-12346) by Victor Stinner · 5 years ago
  18. 8479a34 bpo-33608: Make sure locks in the runtime are properly re-created. (gh-12245) by Eric Snow · 5 years ago
  19. 5be45a6 bpo-33608: Minor cleanup related to pending calls. (gh-12247) by Eric Snow · 5 years ago
  20. 7bda9de Simplify DISPATCH by hoisting eval_breaker ahead of time. (gh-12243) by Eric Snow · 5 years ago
  21. 4d61e6e Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) (GH-12159) by Victor Stinner · 5 years ago
  22. bda918bf bpo-33608: Simplify ceval's DISPATCH by hoisting eval_breaker ahead of time. (gh-12062) by Eric Snow · 5 years ago
  23. 234531b bpo-36030: Add _PyTuple_FromArray() function (GH-11954) by Sergey Fedoseev · 5 years ago
  24. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 5 years ago
  25. ef4ac96 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) by Eric Snow · 5 years ago
  26. 64d6cc8 bpo-35724: Explicitly require the main interpreter for signal-handling. (GH-11530) by Eric Snow · 5 years ago
  27. 001fee1 bpo-12822: use monotonic clock for condvar if possible (GH-11723) by Inada Naoki · 5 years ago
  28. f1ec3ce bpo-35634: Raise an error when first passed kwargs contains duplicated keys. (GH-11438) by Serhiy Storchaka · 6 years ago
  29. fdf282d bpo-35423: Stop using the "pending calls" machinery for signals. (gh-10972) by Eric Snow · 6 years ago
  30. 8905fcc bpo-35454: Fix miscellaneous minor issues in error handling. (#11077) by Serhiy Storchaka · 6 years ago
  31. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 6 years ago
  32. 99d56b5 bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-11033) by Zackery Spytz · 6 years ago
  33. ec13b93 bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705) by Victor Stinner · 6 years ago
  34. bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) by Victor Stinner · 6 years ago
  35. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  36. d17a693 bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434) by Victor Stinner · 6 years ago
  37. 50b4857 bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) by Victor Stinner · 6 years ago
  38. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  39. 9204fb8 bpo-35081: Cleanup pystate.c and pystate.h (GH-10240) by Victor Stinner · 6 years ago
  40. 3bd0d62 Fix typos in comments (GH-9905) by Quan Tian · 6 years ago
  41. eef0596 bpo-31370: Remove references to threadless builds (#8805) by Zackery Spytz · 6 years ago
  42. e89de73 bpo-34125: Enable profiling of method_descriptor in all cases (GH-8416) by jdemeyer · 6 years ago
  43. ddd1949 closes bpo-34673: Tweaks to make ceval more editable. (GH-9289) by Benjamin Peterson · 6 years ago
  44. caba55b bpo-34301: Add _PyInterpreterState_Get() helper function (GH-8592) by Victor Stinner · 6 years ago
  45. 8ed317f bpo-34113: Fix a crash when using LLTRACE is on (GH-8517) by costypetrisor · 6 years ago
  46. 147d955 bpo-34190: Fix reference leak in call_function() (GH-8413) by jdemeyer · 6 years ago
  47. 56868f9 bpo-34126: Fix crashes while profiling invalid calls. (GH-8300) by jdemeyer · 6 years ago
  48. 3f4d90d bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. (GH-8159) by Serhiy Storchaka · 6 years ago
  49. 3a9ccee bpo-29673: fix gdb scripts pystack and pystackv (GH-6126) by Marcel Plch · 6 years ago
  50. a68f2f0 bpo-29922: Improve error messages in 'async with' (GH-6352) by Serhiy Storchaka · 6 years ago
  51. d8b291a bpo-32932: More revealing error message when non-str objects in __all__ (GH-5848) by Xiang Zhang · 6 years ago
  52. 702f8f3 bpo-33041: Rework compiling an "async for" loop. (#6142) by Serhiy Storchaka · 6 years ago
  53. 520b7ae bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter to compiler. (GH-5006) by Serhiy Storchaka · 6 years ago
  54. 332cd5e bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181) by Mark Shannon · 7 years ago
  55. 2914bb3 bpo-20891: Py_Initialize() now creates the GIL (#4700) by Victor Stinner · 7 years ago
  56. 997478e bpo-32688: Make why the line is commented out clear (GH-5405) by Xiang Zhang · 7 years ago
  57. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 7 years ago
  58. fc2f407 bpo-32591: Add native coroutine origin tracking (#5250) by Nathaniel J. Smith · 7 years ago
  59. 13a6c09 bpo-32259: Make a TypeError message when unpack non-iterable more specific. (#4903) by Serhiy Storchaka · 7 years ago
  60. a5552f0 bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746) by Serhiy Storchaka · 7 years ago
  61. 1896793 bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098) by pdox · 7 years ago
  62. 95f1a7b remove support for splitting the ceval switch into multiple switches (#4099) by Benjamin Peterson · 7 years ago
  63. ae3087c Move exc state to generator. Fixes bpo-25612 (#1773) by Mark Shannon · 7 years ago
  64. 20faa68 Move opcode tracing to occur after the possible update to f_lineno. (GH-3798) by George King · 7 years ago
  65. faa135a bpo-31709: Drop support for asynchronous __aiter__. (#3903) by Yury Selivanov · 7 years ago
  66. 6db7033 bpo-31492: Fix assertion failures in case of a module with a bad __name__ attribute. (#3620) by Oren Milman · 7 years ago
  67. 3f9eee6 bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593) by Eric Snow · 7 years ago
  68. b2e5794 bpo-31338 (#3374) by Barry Warsaw · 7 years ago
  69. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 7 years ago
  70. e3b2b4b bpo-31393: Fix the use of PyUnicode_READY(). (#3451) by Serhiy Storchaka · 7 years ago
  71. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  72. 5a85167 bpo-31344: Per-frame control of trace events (GH-3417) by Nick Coghlan · 7 years ago
  73. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  74. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 7 years ago
  75. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 7 years ago
  76. 86b7afd bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638) by Eric Snow · 7 years ago
  77. f432a32 bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157) by Stefan Krah · 7 years ago
  78. 25e4f77 bpo-31071: Avoid masking original TypeError in call with * unpacking (#2957) by Serhiy Storchaka · 7 years ago
  79. 49b2734 Spelling fixes (#2902) by Ville Skyttä · 7 years ago
  80. c6ea897 bpo-30640: Fix undefined behavior in _PyFunction_FastCallDict() and PyEval_EvalCodeEx() (#2919) by Zackery Spytz · 7 years ago
  81. 0c31163 bpo-30854: Fix compile error when --without-threads (#2581) by Masayuki Yamamoto · 7 years ago
  82. c08177a bpo-30703: Improve signal delivery (#2415) by Antoine Pitrou · 7 years ago
  83. 50c2850 Trivial cleanup: remove redundant variable stores in ceval.c (#2012) by Adrian Wielgosik · 7 years ago
  84. f3cffd2 bpo-30604: clean up co_extra support (#2144) by Dino Viehland · 7 years ago
  85. 4a8bcdf bpo-16500: Use register_at_fork() in the threading module (#1843) by Antoine Pitrou · 7 years ago
  86. f7ecfac Doc nits for bpo-16500 (#1841) by Antoine Pitrou · 7 years ago
  87. ab4413a bpo-30039: Don't run signal handlers while resuming a yield from stack (#1081) by Nathaniel J. Smith · 7 years ago
  88. 2ddf5a1 bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480) by Xiang Zhang · 7 years ago
  89. d4edfc9 bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887) by Serhiy Storchaka · 7 years ago
  90. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 7 years ago
  91. 4830f58 bpo-29849: fix a memory leak in import_from (GH-712) by Xiang Zhang · 7 years ago
  92. 80ec836 bpo-29748: Added the slice index converter in Argument Clinic. (#549) by Serhiy Storchaka · 7 years ago
  93. 93fac8d bpo-29676: fix lsprof can't profile C method call. (GH523) by INADA Naoki · 7 years ago
  94. 398ff91 bpo-28893: Set __cause__ for errors in async iteration protocol (#407) by Yury Selivanov · 7 years ago
  95. 160edb4 bpo-29655: Fixed possible reference leaks in `import *`. (#301) by Matthias Bussonnier · 7 years ago
  96. d7e6433 bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting operations (#51) by Martijn Pieters · 7 years ago
  97. 1bc1564 bpo-29546: Improve from-import error message with location (#103) by Matthias Bussonnier · 7 years ago
  98. bc4bed4 bpo-29546: Set 'path' on ImportError for ``from ... import ...`` (GH-91) by Matthias Bussonnier · 7 years ago
  99. c22bfaa bpo-29524: Add Objects/call.c file (#12) by Victor Stinner · 7 years ago
  100. d2306ce Backed out changeset f23fa1f7b68f by Victor Stinner · 7 years ago