1. a6f6edb Issue #27243: Fix __aiter__ protocol by Yury Selivanov · 8 years ago
  2. ad887cf fix possible refleak in MAKE_FUNCTION (closes #26991) by Benjamin Peterson · 8 years ago
  3. 57a01d3 Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF by Serhiy Storchaka · 8 years ago
  4. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  5. c724bae coroutines: Error when awaiting on coroutine that's being awaited by Yury Selivanov · 8 years ago
  6. b594422 Issue #4806: Avoid masking original TypeError in call with * unpacking by Martin Panter · 8 years ago
  7. 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 9 years ago
  8. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  9. 60a1d3c Issue #25556: Fix LOAD_GLOBAL bytecode when globals type is not dict and the by Victor Stinner · 9 years ago
  10. 3f930dc Merge typo fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  11. 9955a37 Various minor typos in documentation and comments by Martin Panter · 9 years ago
  12. 3008bc0 Issue #24492: make sure that ``from ... import ...` raises an by Brett Cannon · 9 years ago
  13. d5d77aa set items in dict displays from left to right (closes #24569) by Benjamin Peterson · 9 years ago
  14. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  15. 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 9 years ago
  16. 289dd19 Added the const qualifier for char* argument of Py_EnterRecursiveCall(). by Serhiy Storchaka · 9 years ago
  17. 5fa22fc Added the const qualifier for char* argument of Py_EnterRecursiveCall(). by Serhiy Storchaka · 9 years ago
  18. 94c2263 Issue 24374: Plug refleak in set_coroutine_wrapper by Yury Selivanov · 9 years ago
  19. eb698fe Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapper by Yury Selivanov · 9 years ago
  20. aab3c4a Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefully by Yury Selivanov · 9 years ago
  21. d8cf382 Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper private by Yury Selivanov · 9 years ago
  22. 264be6f remove STORE_MAP, since it's unused by Benjamin Peterson · 9 years ago
  23. ee85339 in dict displays, evaluate the key before the value (closes #11205) by Benjamin Peterson · 9 years ago
  24. 6ef0590 Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc. by Yury Selivanov · 9 years ago
  25. baaadbf Issue 24017: fix for "async with" refcounting by Nick Coghlan · 9 years ago
  26. f487a00 Fix warnings for PyEval_GetCoroutineWrapper by Yury Selivanov · 9 years ago
  27. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  28. 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 9 years ago
  29. 4171bbe #23949: Improve tuple unpacking error messages. by R David Murray · 9 years ago
  30. efde146 Issue #23571: _Py_CheckFunctionResult() now gives the name of the function by Victor Stinner · 9 years ago
  31. 59b356d Issue #23571: Restore removed assert(!PyErr_Occurred()); in by Victor Stinner · 9 years ago
  32. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 9 years ago
  33. 483405b Issue #22883: Got rid of outdated references to PyInt and PyString in comments. by Serhiy Storchaka · 9 years ago
  34. 13a1c60 Merge 3.4 (generator) by Victor Stinner · 9 years ago
  35. 26f7b8a Issue #23353: Fix the exception handling of generators in PyEval_EvalFrameEx(). by Victor Stinner · 9 years ago
  36. 0b881dd Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64, by Victor Stinner · 10 years ago
  37. 60b33cc Merge 3.4 (ceval.c) by Victor Stinner · 10 years ago
  38. 0373a10 Issue #17636: Circular imports involving relative imports are now supported. by Antoine Pitrou · 10 years ago
  39. e6bfdb9 merge 3.4 by Benjamin Peterson · 10 years ago
  40. 17548dd check if the thread is finalizing after retaking the GIL by Benjamin Peterson · 10 years ago
  41. 40ee301 Issue #21205: Add a new ``__qualname__`` attribute to generator, the qualified by Victor Stinner · 10 years ago
  42. a548a30 merge 3.4 (#21209) by Benjamin Peterson · 10 years ago
  43. f6e50b4 fix sending tuples to custom generator objects with yield from (closes #21209) by Benjamin Peterson · 10 years ago
  44. d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 10 years ago
  45. dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. by Serhiy Storchaka · 10 years ago
  46. 505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. by Serhiy Storchaka · 10 years ago
  47. fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
  48. 8933521 Fix refleak introduced by 4f730c045f5f (issue #18408) and unveiled by 95eea8624d05 (issue #16596). by Antoine Pitrou · 11 years ago
  49. 8820c23 Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier de Gaye. by Guido van Rossum · 11 years ago
  50. cab75e3 Issue #19512: PRINT_EXPR bytecode now uses an identifier to get sys.displayhook by Victor Stinner · 11 years ago
  51. 96c03df merge 3.3 by Benjamin Peterson · 11 years ago
  52. 8f16948 update comment by Benjamin Peterson · 11 years ago
  53. 41bb43a Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle by Victor Stinner · 11 years ago
  54. 8d19767 Close #19199: Remove ``PyThreadState.tick_counter`` field by Victor Stinner · 11 years ago
  55. 1cfa0ba Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least one place so as to avoid regressions. by Antoine Pitrou · 11 years ago
  56. 59c900d Fix macro expansion of _PyErr_OCCURRED(), and make sure to use it in at least one place so as to avoid regressions. by Antoine Pitrou · 11 years ago
  57. 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
  58. 58720d6 Issue #17934: Add a clear() method to frame objects, to help clean up expensive details (local variables) and break reference cycles. by Antoine Pitrou · 11 years ago
  59. 895bdfb Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() by Christian Heimes · 11 years ago
  60. 0bd447f Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() by Christian Heimes · 11 years ago
  61. ace47d7 Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now fail by Victor Stinner · 11 years ago
  62. f243ee4 Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs by Victor Stinner · 11 years ago
  63. 7eab0d0 Issue #18408: Fix PyEval_EvalFrameEx() for MemoryError by Victor Stinner · 11 years ago
  64. a79e4fb Issue #18342: Use the repr of a module name for ``from ... import by Brett Cannon · 11 years ago
  65. 365b693 Issue #18408: ceval.c: in debug mode, convert the PyErr_Occurred() check on by Victor Stinner · 11 years ago
  66. aaa8ed8 Issue #18408: Fix call_exc_trace(): if the traceback is NULL, use None when by Victor Stinner · 11 years ago
  67. 0ff0f54 Issue #18408: Fix call_function() of ceval.c to handle PyTuple_New() failure by Victor Stinner · 11 years ago
  68. 679ecb5 Issue #15767: back out 8a0ed9f63c6e, finishing the removal of by Brett Cannon · 11 years ago
  69. b1611e2 Issue #15767: Introduce ModuleNotFoundError, a subclass of ImportError. by Brett Cannon · 11 years ago
  70. d3dfd0e Fix a compilater warning on Windows 64-bit by Victor Stinner · 11 years ago
  71. e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 11 years ago
  72. e1b4cbc when arguments are cells clear the locals slot (backport of #17927) by Benjamin Peterson · 11 years ago
  73. 159ae41 when an argument is a cell, set the local copy to NULL (see #17927) by Benjamin Peterson · 11 years ago
  74. 6832c81 #17927: Keep frame from referencing cell-ified arguments. by Guido van Rossum · 11 years ago
  75. 8408cea Issue #17094: Clear stale thread states after fork(). by Antoine Pitrou · 11 years ago
  76. 3b0431d check local class namespace before reaching for cells (closes #17853) by Benjamin Peterson · 11 years ago
  77. f097f17 Merge #17413: make sure settrace funcs get passed exception instances for 'value'. by R David Murray · 11 years ago
  78. 3583761 #17413: make sure settrace funcs get passed exception instances for 'value'. by R David Murray · 11 years ago
  79. 04a2955 #17032: The "global" in the "NameError: global name 'x' is not defined" error message has been removed. Patch by Ram Rachum. by Ezio Melotti · 11 years ago
  80. 1ef876c evaluate positional defaults before keyword-only defaults (closes #16967) by Benjamin Peterson · 11 years ago
  81. 51f4616 revert #16672 for incorrect semantics by Benjamin Peterson · 11 years ago
  82. 6f0c94d improve tracing performance when f_trace is NULL (closes #16672) by Benjamin Peterson · 12 years ago
  83. 9272279 use error label instead of breaking eval loop (closes #16693) by Benjamin Peterson · 12 years ago
  84. fe1bcb6 move more variable declarations to the top of blocks by Benjamin Peterson · 12 years ago
  85. f208df3 move declaration to top of block by Benjamin Peterson · 12 years ago
  86. 31a58ff ceval cleanup by Benjamin Peterson · 12 years ago
  87. 00f86f2 add some missing DISPATCH() by Benjamin Peterson · 12 years ago
  88. b37df51 fix yield from return value on custom iterators (closes #15568) by Benjamin Peterson · 12 years ago
  89. c40bc09 Issue #13783: the PEP 380 implementation no longer expands the public C API by Nick Coghlan · 12 years ago
  90. d1ab608 check return for error by Benjamin Peterson · 12 years ago
  91. d5a1c44 PEP 415: Implement suppression of __context__ display with an exception attribute by Benjamin Peterson · 12 years ago
  92. 1138944 only incref when using borrowing functions by Benjamin Peterson · 12 years ago
  93. 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 12 years ago
  94. bf35c15 Fix refleak: PyObject_GetItem returns a new reference, not a borrowed one like PyDict_GetItem. by Antoine Pitrou · 12 years ago
  95. b0b2242 Issue #14385: Support other types than dict for __builtins__ by Victor Stinner · 12 years ago
  96. 368b4b7 Guard an LLTRACE variable to silence an unused variable warning. by Brett Cannon · 12 years ago
  97. 3c1e481 Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions by Victor Stinner · 12 years ago
  98. 302e790 use identifier api by Benjamin Peterson · 12 years ago
  99. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 12 years ago
  100. ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 12 years ago