COMMITS
/ Python/ceval.c 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
May 15, 2012
B
PEP 415: Implement suppression of __context__ display with an exception attribute
Benjamin Peterson committed
April 26, 2012
B
only incref when using borrowing functions
Benjamin Peterson committed
April 23, 2012
B
Implement PEP 412: Key-sharing dictionaries (closes #13903)
Benjamin Peterson committed
April 19, 2012
A
Fix refleak: PyObject_GetItem returns a new reference, not a borrowed one like PyDict_GetItem.
Antoine Pitrou committed
April 18, 2012
V
Issue #14385: Support other types than dict for __builtins__
Victor Stinner committed
April 2, 2012
B
Guard an LLTRACE variable to silence an unused variable warning.
Brett Cannon committed
March 26, 2012
V
Issue #14383: Add _PyDict_GetItemId() and _PyDict_SetItemId() functions
Victor Stinner committed
March 21, 2012
B
use identifier api
Benjamin Peterson committed
March 15, 2012
B
perform yield from delegation by repeating YIELD_FROM opcode (closes #14230)
Benjamin Peterson committed