- 29 Aug, 2016 5 commits
-
-
Serhiy Storchaka authored
-
Serhiy Storchaka authored
numbers. Patch by Stefan Behnel.
-
Mark Dickinson authored
-
Serhiy Storchaka authored
creates not a cursor. Patch by Xiang Zhang.
-
Serhiy Storchaka authored
creates not a cursor. Patch by Xiang Zhang.
-
- 27 Aug, 2016 9 commits
-
-
Berker Peksag authored
-
Brett Cannon authored
-
Martin Panter authored
Patch by Xiang Zhang.
-
Martin Panter authored
-
Martin Panter authored
-
Martin Panter authored
In Subversion r86731, the path was changed from $(BINLIBDEST)/config to $(LIBDEST)/config-$(LDVERSION).
-
Martin Panter authored
Also adjust the test condition, because enable-meta-key was only added in 6.1, not 6.0.
-
Martin Panter authored
The previous attempt to determine the file’s Content-Length gave a false positive for pipes on Windows. Also, drop the special case for sending zero-length iterable bodies.
-
Brett Cannon authored
deprecated.
-
- 26 Aug, 2016 8 commits
-
-
Brett Cannon authored
-
Brett Cannon authored
os.path. Thanks to Jelle Zijlstra for the initial patch against posixmodule.c.
-
Berker Peksag authored
-
Berker Peksag authored
Statements should not be reset after a commit. Backported from https://github.com/ghaering/pysqlite/commit/029050896b1e6058573abeef5a8970384c0c7faa
-
Raymond Hettinger authored
-
Raymond Hettinger authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
- 25 Aug, 2016 6 commits
-
-
Victor Stinner authored
-
Vinay Sajip authored
-
Vinay Sajip authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
- 24 Aug, 2016 12 commits
-
-
Victor Stinner authored
Issue #27841: Add _PyObject_Call_Prepend() helper function to prepend an argument to existing arguments to call a function. This helper uses fast calls. Modify method_call() and slot_tp_new() to use _PyObject_Call_Prepend().
-
Victor Stinner authored
Pass stack, not unrelated and uninitialized args!
-
Victor Stinner authored
_Pickle_FastCall() is now fast again! The optimization was introduced in Python 3.2, removed in Python 3.4 and reintroduced in Python 3.6 (thanks to the new generic fastcall functions).
-
Victor Stinner authored
_PyObject_FastCallDict() only requires _Py_CheckFunctionResult() for the slow-path. Other cases already check for the result.
-
Victor Stinner authored
Issue #27830: Similar to _PyObject_FastCallDict(), but keyword arguments are also passed in the same C array than positional arguments, rather than being passed as a Python dict.
-
Alexander Belopolsky authored
-
Berker Peksag authored
Noticed by Xiang Zhang.
-
Victor Stinner authored
Issue #27848: use Py_ssize_t rather than C int for the number of function positional and keyword arguments.
-
Terry Jan Reedy authored
-
Terry Jan Reedy authored
-
Berker Peksag authored
-
Berker Peksag authored
-