COMMITS
/ Python/ceval.c January 31, 2015
V
Issue #23353: Fix the exception handling of generators in PyEval_EvalFrameEx().
Victor Stinner committed
December 12, 2014
V
Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64,
Victor Stinner committed
June 17, 2014
B
check if the thread is finalizing after retaking the GIL
Benjamin Peterson committed
April 14, 2014
B
fix sending tuples to custom generator objects with yield from (closes #21209)
Benjamin Peterson committed
February 9, 2014
S
Issue #20437: Fixed 22 potential bugs when deleting objects references.
Serhiy Storchaka committed
S
Issue #20437: Fixed 21 potential bugs when deleting objects references.
Serhiy Storchaka committed
December 13, 2013
V
Issue #14432: Remove the thread state field from the frame structure. Fix a
Victor Stinner committed
November 23, 2013
A
Fix refleak introduced by 4f730c045f5f (issue #18408) and unveiled by 95eea8624d05 (issue #16596).
Antoine Pitrou committed
November 21, 2013
G
Better behavior when stepping over yield[from]. Fixes issue 16596. By Xavier de Gaye.
Guido van Rossum committed
November 6, 2013
V
Issue #19512: PRINT_EXPR bytecode now uses an identifier to get sys.displayhook
Victor Stinner committed
October 30, 2013
B
update comment
Benjamin Peterson committed
October 29, 2013
V
Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle
Victor Stinner committed
October 9, 2013
V
Close #19199: Remove ``PyThreadState.tick_counter`` field
Victor Stinner committed
October 7, 2013
A
August 13, 2013
A
Issue #18722: Remove uses of the "register" keyword in C code.
Antoine Pitrou committed
August 5, 2013
July 20, 2013
C
Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx()
Christian Heimes committed
C
Add missing check of PyDict_SetItem()'s return value in PyEval_EvalCodeEx()
Christian Heimes committed
July 17, 2013
V
Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now fail
Victor Stinner committed
July 15, 2013
V
Issue #18408: add more assertions on PyErr_Occurred() in ceval.c to detect bugs
Victor Stinner committed
V
Issue #18408: Fix PyEval_EvalFrameEx() for MemoryError
Victor Stinner committed
July 12, 2013
B
Issue #18342: Use the repr of a module name for ``from ... import
Brett Cannon committed
July 11, 2013
V
Issue #18408: ceval.c: in debug mode, convert the PyErr_Occurred() check on
Victor Stinner committed
July 10, 2013
V
Issue #18408: Fix call_exc_trace(): if the traceback is NULL, use None when
Victor Stinner committed
July 8, 2013
V
Issue #18408: Fix call_function() of ceval.c to handle PyTuple_New() failure
Victor Stinner committed
July 4, 2013
B
Issue #15767: back out 8a0ed9f63c6e, finishing the removal of
Brett Cannon committed
June 12, 2013
B
Issue #15767: Introduce ModuleNotFoundError, a subclass of
Brett Cannon committed
May 16, 2013
V
Fix a compilater warning on Windows 64-bit
Victor Stinner committed
B
rather than passing locals to the class body, just execute the class body in the proper environment
Benjamin Peterson committed
May 15, 2013
B
when arguments are cells clear the locals slot (backport of #17927)
Benjamin Peterson committed
May 12, 2013
B
when an argument is a cell, set the local copy to NULL (see #17927)
Benjamin Peterson committed
May 10, 2013
G
#17927: Keep frame from referencing cell-ified arguments.
Guido van Rossum committed
May 5, 2013
A
Issue #17094: Clear stale thread states after fork().
Antoine Pitrou committed
April 30, 2013
B
check local class namespace before reaching for cells (closes #17853)
Benjamin Peterson committed
April 19, 2013
R
Merge #17413: make sure settrace funcs get passed exception instances for 'value'.
R David Murray committed
R
#17413: make sure settrace funcs get passed exception instances for 'value'.
R David Murray committed
March 3, 2013
February 10, 2013
B
evaluate positional defaults before keyword-only defaults (closes #16967)
Benjamin Peterson committed
January 23, 2013
B
revert #16672 for incorrect semantics
Benjamin Peterson committed
December 24, 2012
B
improve tracing performance when f_trace is NULL (closes #16672)
Benjamin Peterson committed
December 15, 2012
B
use error label instead of breaking eval loop (closes #16693)
Benjamin Peterson committed
October 12, 2012
B
move more variable declarations to the top of blocks
Benjamin Peterson committed
B
move declaration to top of block
Benjamin Peterson committed
B
ceval cleanup
Benjamin Peterson committed
October 10, 2012
B
add some missing DISPATCH()
Benjamin Peterson committed
August 7, 2012
B
fix yield from return value on custom iterators (closes #15568)
Benjamin Peterson committed
June 17, 2012
N
Issue #13783: the PEP 380 implementation no longer expands the public C API
Nick Coghlan committed
June 1, 2012
B
check return for error
Benjamin Peterson committed