COMMITS
/ Python/ceval.c August 19, 2016
V
import_name() now uses fast call
Victor Stinner committed
V
Fix PyObject_Call() parameter names
Victor Stinner committed
V
PyEval_CallObjectWithKeywords() uses fast call
Victor Stinner committed
V
Add _PyObject_FastCall()
Victor Stinner committed
August 18, 2016
V
Merge 3.5 (fix raise)
Victor Stinner committed
V
Fix SystemError in "raise" statement
Victor Stinner committed
August 16, 2016
V
Use Py_ssize_t in _PyEval_EvalCodeWithName()
Victor Stinner committed
V
Issue #27128: Cleanup _PyEval_EvalCodeWithName()
Victor Stinner committed
August 2, 2016
S
Issue #22557: Now importing already imported modules is up to 2.5 times faster.
Serhiy Storchaka committed
July 18, 2016
M
Issue #16191: Merge comment fixes from 3.5
Martin Panter committed
M
Issue #16191: Fix up references to renamed variables
Martin Panter committed
June 27, 2016
S
Issue #27352: Correct the validation of the ImportFrom AST node and simplify
Serhiy Storchaka committed
S
Issue #27255: Added more predictions in ceval.c.
Serhiy Storchaka committed
June 12, 2016
S
Issue #27095: Simplified MAKE_FUNCTION and removed MAKE_CLOSURE opcodes.
Serhiy Storchaka committed
June 11, 2016
S
Issue #27140: Added BUILD_CONST_KEY_MAP opcode.
Serhiy Storchaka committed
June 9, 2016
Y
Merge 3.5 (issue #27243)
Yury Selivanov committed
Y
Issue #27243: Fix __aiter__ protocol
Yury Selivanov committed
May 25, 2016
S
Fixed the use of _Py_IS_ALIGNED (issue #27097).
Serhiy Storchaka committed
S
Issue #27097: Python interpreter is now about 7% faster due to optimized
Serhiy Storchaka committed
May 24, 2016
S
Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode.
Serhiy Storchaka committed
May 17, 2016
B
merge 3.5 (#26991)
Benjamin Peterson committed
B
fix possible refleak in MAKE_FUNCTION (closes #26991)
Benjamin Peterson committed
May 8, 2016
S
Issue #18531: Single var-keyword argument of dict subtype was passed
Serhiy Storchaka committed
April 19, 2016
S
Issue #26802: Optimized calling a function with *args only positional arguments.
Serhiy Storchaka committed
April 10, 2016
S
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka committed
S
Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREF
Serhiy Storchaka committed
April 6, 2016
S
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka committed
S
Issue #22570: Renamed Py_SETREF to Py_XSETREF.
Serhiy Storchaka committed
March 2, 2016
Y
Merge 3.5 (issue #25888)
Yury Selivanov committed
Y
coroutines: Error when awaiting on coroutine that's being awaited
Yury Selivanov committed
February 5, 2016
E
Switch to more idiomatic C code.
Eric V. Smith committed
January 31, 2016
M
Issue #4806: Merge * unpacking fix from 3.5
Martin Panter committed
M
Issue #4806: Avoid masking original TypeError in call with * unpacking
Martin Panter committed
December 27, 2015
S
Issue #20440: Applied yet one patch for using Py_SETREF.
Serhiy Storchaka committed
S
Issue #20440: Applied yet one patch for using Py_SETREF.
Serhiy Storchaka committed
December 25, 2015
S
Issue #25923: Added more const qualifiers to signatures of static and private functions.
Serhiy Storchaka committed
December 24, 2015
S
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka committed
S
Issue #20440: Massive replacing unsafe attribute setting code with special
Serhiy Storchaka committed
November 20, 2015
V
Issue #25557: Refactor _PyDict_LoadGlobal()
Victor Stinner committed
November 5, 2015
V
Issue #25556: Add assertions to PyObject_GetItem() to ensure that an exception
Victor Stinner committed
V
Issue #25556: Fix LOAD_GLOBAL bytecode when globals type is not dict and the
Victor Stinner committed
November 3, 2015
E
Issue 25483: Add an opcode to make f-string formatting more robust.
Eric V. Smith committed
October 7, 2015
M
Merge typo fixes from 3.4 into 3.5
Martin Panter committed
M
Various minor typos in documentation and comments
Martin Panter committed
August 12, 2015
B
Issue #24492: make sure that ``from ... import ...` raises an
Brett Cannon committed
July 5, 2015
B
set items in dict displays from left to right (closes #24569)
Benjamin Peterson committed
July 3, 2015
Y
Issue #19235: Add new RecursionError exception. Patch by Georg Brandl.
Yury Selivanov committed
June 22, 2015
Y
Issue #24400: Introduce a distinct type for 'async def' coroutines.
Yury Selivanov committed