- 21 Aug, 2016 8 commits
-
-
Martin Panter authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Martin Panter authored
Also try to clarify the find_spec() error message.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
- 20 Aug, 2016 18 commits
-
-
Jason R. Coombs authored
-
Serhiy Storchaka authored
Patch by Xiang Zhang.
-
Ethan Furman authored
-
Ethan Furman authored
-
Martin Panter authored
-
Martin Panter authored
-
Berker Peksag authored
-
Berker Peksag authored
-
Martin Panter authored
-
Martin Panter authored
-
Martin Panter authored
-
Ethan Furman authored
-
Martin Panter authored
-
Martin Panter authored
-
Ned Deily authored
-
Ned Deily authored
bootstrap files: Could not find platform dependent libraries <exec_prefix Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>] Patch by Xiang Zhang
-
Victor Stinner authored
Issue #26823.
-
Victor Stinner authored
Handle PyTuple_New(0) failure.
-
- 19 Aug, 2016 14 commits
-
-
Victor Stinner authored
Issue #27128.
-
Victor Stinner authored
Issue #27128.
-
Victor Stinner authored
Issue #27128.
-
Victor Stinner authored
Issue #27128.
-
Victor Stinner authored
Issue #27128.
-
Victor Stinner authored
Issue #27128: import_name() now calls _PyObject_FastCall() to avoid the creation of a temporary tuple.
-
Victor Stinner authored
Issue #27128: PyFile_WriteObject() now calls _PyObject_FastCall() to avoid the creation of a temporary tuple.
-
Victor Stinner authored
Use _PyObject_FastCall() to avoid the creation of temporary tuple.
-
Victor Stinner authored
Issue #27128: keyobject_richcompare() now calls _PyObject_FastCall() using a small stack allocated on the C stack to avoid a temporary tuple.
-
Victor Stinner authored
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 authored
Issue #27128: slot_tp_iter() now calls _PyObject_FastCall() to avoid a temporary empty tuple.
-
Victor Stinner authored
Issue #27128: slot_nb_bool() now calls _PyObject_FastCall() to avoid a temporary empty tuple to call the slot function.
-
Victor Stinner authored
Use an error label to reduce the level of indentation.
-
Victor Stinner authored
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.
-