- 20 Agu, 2016 18 kayıt (commit)
-
-
Jason R. Coombs yazdı
-
Serhiy Storchaka yazdı
Patch by Xiang Zhang.
-
Ethan Furman yazdı
-
Ethan Furman yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Berker Peksag yazdı
-
Berker Peksag yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Ethan Furman yazdı
-
Martin Panter yazdı
-
Martin Panter yazdı
-
Ned Deily yazdı
-
Ned Deily yazdı
bootstrap files: Could not find platform dependent libraries <exec_prefix Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>] Patch by Xiang Zhang
-
Victor Stinner yazdı
Issue #26823.
-
Victor Stinner yazdı
Handle PyTuple_New(0) failure.
-
- 19 Agu, 2016 22 kayıt (commit)
-
-
Victor Stinner yazdı
Issue #27128.
-
Victor Stinner yazdı
Issue #27128.
-
Victor Stinner yazdı
Issue #27128.
-
Victor Stinner yazdı
Issue #27128.
-
Victor Stinner yazdı
Issue #27128.
-
Victor Stinner yazdı
Issue #27128: import_name() now calls _PyObject_FastCall() to avoid the creation of a temporary tuple.
-
Victor Stinner yazdı
Issue #27128: PyFile_WriteObject() now calls _PyObject_FastCall() to avoid the creation of a temporary tuple.
-
Victor Stinner yazdı
Use _PyObject_FastCall() to avoid the creation of temporary tuple.
-
Victor Stinner yazdı
Issue #27128: keyobject_richcompare() now calls _PyObject_FastCall() using a small stack allocated on the C stack to avoid a temporary tuple.
-
Victor Stinner yazdı
Issue #27128: calliter_iternext() now calls _PyObject_FastCall() to avoid a temporary empty tuple. Cleanup also the code to reduce the indentation level.
-
Victor Stinner yazdı
Issue #27128: slot_tp_iter() now calls _PyObject_FastCall() to avoid a temporary empty tuple.
-
Victor Stinner yazdı
Issue #27128: slot_nb_bool() now calls _PyObject_FastCall() to avoid a temporary empty tuple to call the slot function.
-
Victor Stinner yazdı
Use an error label to reduce the level of indentation.
-
Victor Stinner yazdı
slot_sq_item() now calls _PyObject_FastCall() to avoid the creation of a temporary tuple of 1 item to pass the 'item' argument to the slot function.
-
Victor Stinner yazdı
* Invert condition of test to avoid levels of indentation * Remove useless Py_XDECREF(args) in the error block * Replace Py_XDECREF(func) with Py_DECREF(func) in the error block: func cannot be NULL when reaching the error block
-
Victor Stinner yazdı
Issue #27128. The call_method() and call_maybe() functions of typeobject.c now use fast call for empty format string to avoid the creation of a temporary empty tuple.
-
Victor Stinner yazdı
Issue #27128. Move va_start/va_end around Py_VaBuildValue().
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #27128. Fix a reference leak if creating the tuple to pass positional parameters fails.
-
Victor Stinner yazdı
-
Victor Stinner yazdı
-
Victor Stinner yazdı
Issue #27128. Fix a reference leak if creating the tuple to pass positional parameters fails.
-