- 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 9 years ago
- 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
- 60a1d3c Issue #25556: Fix LOAD_GLOBAL bytecode when globals type is not dict and the by Victor Stinner · 9 years ago
- 3f930dc Merge typo fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
- 9955a37 Various minor typos in documentation and comments by Martin Panter · 9 years ago
- 3008bc0 Issue #24492: make sure that ``from ... import ...` raises an by Brett Cannon · 9 years ago
- d5d77aa set items in dict displays from left to right (closes #24569) by Benjamin Peterson · 10 years ago
- f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 10 years ago
- 5376ba9 Issue #24400: Introduce a distinct type for 'async def' coroutines. by Yury Selivanov · 10 years ago
- 289dd19 Added the const qualifier for char* argument of Py_EnterRecursiveCall(). by Serhiy Storchaka · 10 years ago
- 5fa22fc Added the const qualifier for char* argument of Py_EnterRecursiveCall(). by Serhiy Storchaka · 10 years ago
- 94c2263 Issue 24374: Plug refleak in set_coroutine_wrapper by Yury Selivanov · 10 years ago
- eb698fe Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapper by Yury Selivanov · 10 years ago
- aab3c4a Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefully by Yury Selivanov · 10 years ago
- d8cf382 Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper private by Yury Selivanov · 10 years ago
- 264be6f remove STORE_MAP, since it's unused by Benjamin Peterson · 10 years ago
- ee85339 in dict displays, evaluate the key before the value (closes #11205) by Benjamin Peterson · 10 years ago
- 6ef0590 Issue 24017: Drop getawaitablefunc and friends in favor of unaryfunc. by Yury Selivanov · 10 years ago
- baaadbf Issue 24017: fix for "async with" refcounting by Nick Coghlan · 10 years ago
- f487a00 Fix warnings for PyEval_GetCoroutineWrapper by Yury Selivanov · 10 years ago
- 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 10 years ago
- 025e9eb PEP 448: additional unpacking generalizations (closes #2292) by Benjamin Peterson · 10 years ago
- 4171bbe #23949: Improve tuple unpacking error messages. by R David Murray · 10 years ago
- efde146 Issue #23571: _Py_CheckFunctionResult() now gives the name of the function by Victor Stinner · 10 years ago
- 59b356d Issue #23571: Restore removed assert(!PyErr_Occurred()); in by Victor Stinner · 10 years ago
- 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 10 years ago
- 483405b Issue #22883: Got rid of outdated references to PyInt and PyString in comments. by Serhiy Storchaka · 10 years ago
- 13a1c60 Merge 3.4 (generator) by Victor Stinner · 10 years ago
- 26f7b8a Issue #23353: Fix the exception handling of generators in PyEval_EvalFrameEx(). by Victor Stinner · 10 years ago
- 0b881dd Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64, by Victor Stinner · 10 years ago
- 60b33cc Merge 3.4 (ceval.c) by Victor Stinner · 10 years ago
- 0373a10 Issue #17636: Circular imports involving relative imports are now supported. by Antoine Pitrou · 10 years ago
- e6bfdb9 merge 3.4 by Benjamin Peterson · 11 years ago
- 17548dd check if the thread is finalizing after retaking the GIL by Benjamin Peterson · 11 years ago
- 40ee301 Issue #21205: Add a new ``__qualname__`` attribute to generator, the qualified by Victor Stinner · 11 years ago
- a548a30 merge 3.4 (#21209) by Benjamin Peterson · 11 years ago
- f6e50b4 fix sending tuples to custom generator objects with yield from (closes #21209) by Benjamin Peterson · 11 years ago
- d51374e PEP 465: a dedicated infix operator for matrix multiplication (closes #21176) by Benjamin Peterson · 11 years ago
- dfe98a1 Issue #20437: Fixed 22 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
- 505ff75 Issue #20437: Fixed 21 potential bugs when deleting objects references. by Serhiy Storchaka · 11 years ago
- fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
- 8933521 Fix refleak introduced by 4f730c045f5f (issue #18408) and unveiled by 95eea8624d05 (issue #16596). by Antoine Pitrou · 11 years ago
- 8820c23 Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier de Gaye. by Guido van Rossum · 11 years ago
- cab75e3 Issue #19512: PRINT_EXPR bytecode now uses an identifier to get sys.displayhook by Victor Stinner · 11 years ago
- 96c03df merge 3.3 by Benjamin Peterson · 11 years ago
- 8f16948 update comment by Benjamin Peterson · 11 years ago
- 41bb43a Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle by Victor Stinner · 11 years ago
- 8d19767 Close #19199: Remove ``PyThreadState.tick_counter`` field by Victor Stinner · 11 years ago
- 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
- 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
- 9ed5f27 Issue #18722: Remove uses of the "register" keyword in C code. by Antoine Pitrou · 11 years ago
- 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
- 895bdfb Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() by Christian Heimes · 11 years ago
- 0bd447f Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx() by Christian Heimes · 11 years ago
- ace47d7 Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now fail by Victor Stinner · 12 years ago
- f243ee4 Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs by Victor Stinner · 12 years ago
- 7eab0d0 Issue #18408: Fix PyEval_EvalFrameEx() for MemoryError by Victor Stinner · 12 years ago
- a79e4fb Issue #18342: Use the repr of a module name for ``from ... import by Brett Cannon · 12 years ago
- 365b693 Issue #18408: ceval.c: in debug mode, convert the PyErr_Occurred() check on by Victor Stinner · 12 years ago
- aaa8ed8 Issue #18408: Fix call_exc_trace(): if the traceback is NULL, use None when by Victor Stinner · 12 years ago
- 0ff0f54 Issue #18408: Fix call_function() of ceval.c to handle PyTuple_New() failure by Victor Stinner · 12 years ago
- 679ecb5 Issue #15767: back out 8a0ed9f63c6e, finishing the removal of by Brett Cannon · 12 years ago
- b1611e2 Issue #15767: Introduce ModuleNotFoundError, a subclass of ImportError. by Brett Cannon · 12 years ago
- d3dfd0e Fix a compilater warning on Windows 64-bit by Victor Stinner · 12 years ago
- e8e1459 rather than passing locals to the class body, just execute the class body in the proper environment by Benjamin Peterson · 12 years ago
- e1b4cbc when arguments are cells clear the locals slot (backport of #17927) by Benjamin Peterson · 12 years ago
- 159ae41 when an argument is a cell, set the local copy to NULL (see #17927) by Benjamin Peterson · 12 years ago
- 6832c81 #17927: Keep frame from referencing cell-ified arguments. by Guido van Rossum · 12 years ago
- 8408cea Issue #17094: Clear stale thread states after fork(). by Antoine Pitrou · 12 years ago
- 3b0431d check local class namespace before reaching for cells (closes #17853) by Benjamin Peterson · 12 years ago
- f097f17 Merge #17413: make sure settrace funcs get passed exception instances for 'value'. by R David Murray · 12 years ago
- 3583761 #17413: make sure settrace funcs get passed exception instances for 'value'. by R David Murray · 12 years ago
- 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 · 12 years ago
- 1ef876c evaluate positional defaults before keyword-only defaults (closes #16967) by Benjamin Peterson · 12 years ago
- 51f4616 revert #16672 for incorrect semantics by Benjamin Peterson · 12 years ago
- 6f0c94d improve tracing performance when f_trace is NULL (closes #16672) by Benjamin Peterson · 12 years ago
- 9272279 use error label instead of breaking eval loop (closes #16693) by Benjamin Peterson · 12 years ago
- fe1bcb6 move more variable declarations to the top of blocks by Benjamin Peterson · 12 years ago
- f208df3 move declaration to top of block by Benjamin Peterson · 12 years ago
- 31a58ff ceval cleanup by Benjamin Peterson · 12 years ago
- 00f86f2 add some missing DISPATCH() by Benjamin Peterson · 12 years ago
- b37df51 fix yield from return value on custom iterators (closes #15568) by Benjamin Peterson · 12 years ago
- c40bc09 Issue #13783: the PEP 380 implementation no longer expands the public C API by Nick Coghlan · 13 years ago
- d1ab608 check return for error by Benjamin Peterson · 13 years ago
- d5a1c44 PEP 415: Implement suppression of __context__ display with an exception attribute by Benjamin Peterson · 13 years ago
- 1138944 only incref when using borrowing functions by Benjamin Peterson · 13 years ago
- 7d95e40 Implement PEP 412: Key-sharing dictionaries (closes #13903) by Benjamin Peterson · 13 years ago
- bf35c15 Fix refleak: PyObject_GetItem returns a new reference, not a borrowed one like PyDict_GetItem. by Antoine Pitrou · 13 years ago
- b0b2242 Issue #14385: Support other types than dict for __builtins__ by Victor Stinner · 13 years ago
- 368b4b7 Guard an LLTRACE variable to silence an unused variable warning. by Brett Cannon · 13 years ago
- 3c1e481 Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions by Victor Stinner · 13 years ago
- 302e790 use identifier api by Benjamin Peterson · 13 years ago
- 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 13 years ago
- ab7bf21 Close issue #6210: Implement PEP 409 by Nick Coghlan · 13 years ago
- ce79852 use the static identifier api for looking up special methods by Benjamin Peterson · 13 years ago
- 0a239e9 Fix compilation with C89 compilers (Windows...) by Amaury Forgeot d'Arc · 13 years ago
- 0296a56 NULL and no exception set from tp_iternext means StopIteration by Benjamin Peterson · 13 years ago
- 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
- 86a36b5 PEP 3155 / issue #13448: Qualified name for classes and functions. by Antoine Pitrou · 13 years ago
- 1c67dd9 Port SetAttrString/HasAttrString to SetAttrId/GetAttrId. by Martin v. Löwis · 13 years ago