1. 332cd5e bpo-32550. Remove the STORE_ANNOTATION bytecode. (GH-5181) by Mark Shannon · 6 years ago
  2. 2914bb3 bpo-20891: Py_Initialize() now creates the GIL (#4700) by Victor Stinner · 6 years ago
  3. 997478e bpo-32688: Make why the line is commented out clear (GH-5405) by Xiang Zhang · 6 years ago
  4. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 7 years ago
  5. fc2f407 bpo-32591: Add native coroutine origin tracking (#5250) by Nathaniel J. Smith · 7 years ago
  6. 13a6c09 bpo-32259: Make a TypeError message when unpack non-iterable more specific. (#4903) by Serhiy Storchaka · 7 years ago
  7. a5552f0 bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746) by Serhiy Storchaka · 7 years ago
  8. 1896793 bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098) by pdox · 7 years ago
  9. 95f1a7b remove support for splitting the ceval switch into multiple switches (#4099) by Benjamin Peterson · 7 years ago
  10. ae3087c Move exc state to generator. Fixes bpo-25612 (#1773) by Mark Shannon · 7 years ago
  11. 20faa68 Move opcode tracing to occur after the possible update to f_lineno. (GH-3798) by George King · 7 years ago
  12. faa135a bpo-31709: Drop support for asynchronous __aiter__. (#3903) by Yury Selivanov · 7 years ago
  13. 6db7033 bpo-31492: Fix assertion failures in case of a module with a bad __name__ attribute. (#3620) by Oren Milman · 7 years ago
  14. 3f9eee6 bpo-28411: Support other mappings in PyInterpreterState.modules. (#3593) by Eric Snow · 7 years ago
  15. b2e5794 bpo-31338 (#3374) by Barry Warsaw · 7 years ago
  16. 93c92f7 bpo-31404: Revert "remove modules from Py_InterpreterState (#1638)" (#3565) by Eric Snow · 7 years ago
  17. e3b2b4b bpo-31393: Fix the use of PyUnicode_READY(). (#3451) by Serhiy Storchaka · 7 years ago
  18. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  19. 5a85167 bpo-31344: Per-frame control of trace events (GH-3417) by Nick Coghlan · 7 years ago
  20. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  21. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 7 years ago
  22. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 7 years ago
  23. 86b7afd bpo-28411: Remove "modules" field from Py_InterpreterState. (#1638) by Eric Snow · 7 years ago
  24. f432a32 bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157) by Stefan Krah · 7 years ago
  25. 25e4f77 bpo-31071: Avoid masking original TypeError in call with * unpacking (#2957) by Serhiy Storchaka · 7 years ago
  26. 49b2734 Spelling fixes (#2902) by Ville Skyttä · 7 years ago
  27. c6ea897 bpo-30640: Fix undefined behavior in _PyFunction_FastCallDict() and PyEval_EvalCodeEx() (#2919) by Zackery Spytz · 7 years ago
  28. 0c31163 bpo-30854: Fix compile error when --without-threads (#2581) by Masayuki Yamamoto · 7 years ago
  29. c08177a bpo-30703: Improve signal delivery (#2415) by Antoine Pitrou · 7 years ago
  30. 50c2850 Trivial cleanup: remove redundant variable stores in ceval.c (#2012) by Adrian Wielgosik · 7 years ago
  31. f3cffd2 bpo-30604: clean up co_extra support (#2144) by Dino Viehland · 7 years ago
  32. 4a8bcdf bpo-16500: Use register_at_fork() in the threading module (#1843) by Antoine Pitrou · 7 years ago
  33. f7ecfac Doc nits for bpo-16500 (#1841) by Antoine Pitrou · 7 years ago
  34. ab4413a bpo-30039: Don't run signal handlers while resuming a yield from stack (#1081) by Nathaniel J. Smith · 7 years ago
  35. 2ddf5a1 bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1480) by Xiang Zhang · 7 years ago
  36. d4edfc9 bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887) by Serhiy Storchaka · 7 years ago
  37. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 7 years ago
  38. 4830f58 bpo-29849: fix a memory leak in import_from (GH-712) by Xiang Zhang · 7 years ago
  39. 80ec836 bpo-29748: Added the slice index converter in Argument Clinic. (#549) by Serhiy Storchaka · 7 years ago
  40. 93fac8d bpo-29676: fix lsprof can't profile C method call. (GH523) by INADA Naoki · 7 years ago
  41. 398ff91 bpo-28893: Set __cause__ for errors in async iteration protocol (#407) by Yury Selivanov · 7 years ago
  42. 160edb4 bpo-29655: Fixed possible reference leaks in `import *`. (#301) by Matthias Bussonnier · 7 years ago
  43. d7e6433 bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting operations (#51) by Martijn Pieters · 7 years ago
  44. 1bc1564 bpo-29546: Improve from-import error message with location (#103) by Matthias Bussonnier · 7 years ago
  45. bc4bed4 bpo-29546: Set 'path' on ImportError for ``from ... import ...`` (GH-91) by Matthias Bussonnier · 7 years ago
  46. c22bfaa bpo-29524: Add Objects/call.c file (#12) by Victor Stinner · 7 years ago
  47. d2306ce Backed out changeset f23fa1f7b68f by Victor Stinner · 7 years ago
  48. 766af55 Issue #29465: Add Objects/call.c file by Victor Stinner · 7 years ago
  49. 5566bbb Issue #29263: LOAD_METHOD support for C methods by INADA Naoki · 7 years ago
  50. 122fb56 Document that _PyFunction_FastCallDict() must copy kwargs by Victor Stinner · 7 years ago
  51. a8cb515 Rephrase !PyErr_Occurred() comment: may=>can by Victor Stinner · 8 years ago
  52. 015bce6 Issue #26110: Add document for LOAD_METHOD and CALL_METHOD opcode. by INADA Naoki · 8 years ago
  53. 231d1f3 _PyEval_EvalCodeWithName(): remove redundant check by Victor Stinner · 8 years ago
  54. 415c510 Inline call_function() by Victor Stinner · 8 years ago
  55. 865a0f6 Optimize _PyFunction_FastCallDict() when kwargs is {} by Victor Stinner · 8 years ago
  56. 9c15776 Issue #29049: Remove unnecessary Py_DECREF by INADA Naoki · 8 years ago
  57. 6a3cedf Issue #29049: Fix refleak introduced by f5eb0c4f5d37. by INADA Naoki · 8 years ago
  58. 5a625d0 Issue #29049: Call _PyObject_GC_TRACK() lazily when calling Python function. by INADA Naoki · 8 years ago
  59. 5bb8b91 Issue #18896: Python function can now have more than 255 parameters. by Serhiy Storchaka · 8 years ago
  60. 5ab81d7 Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict. by Serhiy Storchaka · 8 years ago
  61. f239213 Issue #26110: Add LOAD_METHOD/CALL_METHOD opcodes. by Yury Selivanov · 8 years ago
  62. 59a7327 Backed out changeset 99c34e47348b by Victor Stinner · 8 years ago
  63. 0ca246c Inline PyEval_EvalFrameEx() in callers by Victor Stinner · 8 years ago
  64. f17c3de Use _PyObject_CallNoArg() by Victor Stinner · 8 years ago
  65. a5ed5f0 Use _PyObject_CallNoArg() by Victor Stinner · 8 years ago
  66. 2d0eb65 Uniformize argument names of "call" functions by Victor Stinner · 8 years ago
  67. de4ae3d Backed out changeset b9c9691c72c5 by Victor Stinner · 8 years ago
  68. 842cfff WITH_CLEANUP_START uses fastcall by Victor Stinner · 8 years ago
  69. 27580c1 Replace PyObject_CallFunctionObjArgs() with fastcall by Victor Stinner · 8 years ago
  70. b69ee8c call_function(): document PyMethod optimization by Victor Stinner · 8 years ago
  71. 048afd9 Remove CALL_PROFILE special build by Victor Stinner · 8 years ago
  72. ed6de73 Merge 3.6 by Victor Stinner · 8 years ago
  73. f7d199f Fix _PyGen_yf() by Victor Stinner · 8 years ago
  74. 3fa28fd merge by Raymond Hettinger · 8 years ago
  75. 64e2f9a Issue #27100: Fix ref leak by Raymond Hettinger · 8 years ago
  76. 9af740b merge by Raymond Hettinger · 8 years ago
  77. a3fec15 Issue #27100: With statement reports missing __enter__ before __exit__. (Contributed by Jonathan Ellington.) by Raymond Hettinger · 8 years ago
  78. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 8 years ago
  79. a98c4a9 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  80. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  81. c32f9db Issue #28665: Use macro form of PyCell_GET/SET by Raymond Hettinger · 8 years ago
  82. b2b1543 merge by Raymond Hettinger · 8 years ago
  83. 1352712 Issue #28665: Harmonize STORE_DEREF with STORE_FAST and LOAD_DEREF giving a 40% speedup. by Raymond Hettinger · 8 years ago
  84. c6944e7 Issue #28618: Make hot functions using __attribute__((hot)) by Victor Stinner · 8 years ago
  85. 818b5cc Fixed possible abort in ceval loop if _PyUnicode_FromId() fails. by Serhiy Storchaka · 8 years ago
  86. 4678b2f Fixed possible abort in ceval loop if _PyUnicode_FromId() fails. by Serhiy Storchaka · 8 years ago
  87. 70b72f0 Fixed possible abort in ceval loop if _PyUnicode_FromId() fails. by Serhiy Storchaka · 8 years ago
  88. 0ee446c Merge 3.6 (issue #27243) by Yury Selivanov · 8 years ago
  89. 2edd8a1 Issue #27243: Change PendingDeprecationWarning -> DeprecationWarning. by Yury Selivanov · 8 years ago
  90. d65f42a Issue #21955: Please don't try to optimize int+int by Victor Stinner · 8 years ago
  91. 4186222 Minor fix-up to apply the stack adjustment macros consistent with the other opcodes by Raymond Hettinger · 8 years ago
  92. 5665301 Issue #28257: Improved error message when pass a non-mapping as a var-keyword by Serhiy Storchaka · 8 years ago
  93. 419968c Issue #27358: Merge from 3.6 by Berker Peksag · 8 years ago
  94. 8e9045d Issue #27358: Fix typo in error message by Berker Peksag · 8 years ago
  95. 2e84de3 Issue #27358: Optimized merging var-keyword arguments and improved error by Serhiy Storchaka · 8 years ago
  96. e036ef8 Issue #27358: Optimized merging var-keyword arguments and improved error by Serhiy Storchaka · 8 years ago
  97. 775a0ea Issue #28257: Improved error message when pass a non-iterable as by Serhiy Storchaka · 8 years ago
  98. 7344285 Issue #28257: Improved error message when pass a non-iterable as by Serhiy Storchaka · 8 years ago
  99. c019158 Issue #27703: Got rid of unnecessary NULL checks in do_raise() in release mode. by Serhiy Storchaka · 8 years ago
  100. 208bbd2 Silence GCC warning. by Serhiy Storchaka · 8 years ago