- 08 Ara, 2016 22 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #28915: Without parenthesis, _PyObject_CallMethodId() avoids the creation a temporary tuple, and so is more efficient.
-
Victor Stinner yazdı
Issue #28915: Use _Py_VaBuildStack() to build a C array of PyObject* and then use _PyObject_FastCall(). The function has a special case if the stack only contains one parameter and the parameter is a tuple: "unpack" the tuple of arguments in this case.
-
Victor Stinner yazdı
Issue #28915: Similar to Py_VaBuildValue(), but work on a C array of PyObject*, instead of creating a tuple.
-
Victor Stinner yazdı
Issue #28915: Py_ssize_t type is better for indexes. The compiler might emit more efficient code for i++. Py_ssize_t is the type of a PyTuple index for example. Replace also "int endchar" with "char endchar".
-
Victor Stinner yazdı
Issue #28915.
-
Victor Stinner yazdı
Issue #28915: Add _PyObject_CallFunctionVa() helper to factorize code of functions: * PyObject_CallFunction() * _PyObject_CallFunction_SizeT() * callmethod()
-
Victor Stinner yazdı
Issue #28915: Add _PyObject_FastCallVa() helper to factorize code of functions: * PyObject_CallFunctionObjArgs() * PyObject_CallMethodObjArgs() * _PyObject_CallMethodIdObjArgs() Inline objargs_mkstack() into _PyObject_FastCallVa(), remove objargs_mkstack().
-
Steve Dower yazdı
-
Victor Stinner yazdı
-
Xavier de Gaye yazdı
-
Xavier de Gaye yazdı
-
Xavier de Gaye yazdı
-
Xavier de Gaye yazdı
-
Xavier de Gaye yazdı
-
Xavier de Gaye yazdı
test_functools hanging on the Android armv7 qemu emulator.
-
Benjamin Peterson yazdı
-
Benjamin Peterson yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Yury Selivanov yazdı
-
Yury Selivanov yazdı
-
- 07 Ara, 2016 18 kayıt (commit)
-
-
Steve Dower yazdı
-
INADA Naoki yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
-
Serhiy Storchaka yazdı
This makes tests passing after changes by issue #5322.
-
INADA Naoki yazdı
-
INADA Naoki yazdı
Improve speed of dict literal with constant keys up to 30%.
-
Serhiy Storchaka yazdı
Original patch by Andreas Stührk.
-
Serhiy Storchaka yazdı
Original patch by Andreas Stührk.
-
Serhiy Storchaka yazdı
and recreated in the 'r' and 'w' modes (will be an error in future Python releases).
-
Serhiy Storchaka yazdı
writes the index file when it is not changed.
-
Serhiy Storchaka yazdı
writes the index file when it is not changed.
-
Serhiy Storchaka yazdı
writes the index file when it is not changed.
-
Ned Deily yazdı
-
Ned Deily yazdı
Prepare for 3.6.1. Any further 3.6.0 release candidates and 3.6.0 final will be cherrypicked and merged here.
-
Ned Deily yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
-