COMMITS
/ Python/getargs.c March 23, 2019
I
bpo-36381: warn when no PY_SSIZE_T_CLEAN defined (GH-12473)
Inada Naoki committed
March 16, 2019
S
bpo-36127: Fix compiler warning in _PyArg_UnpackKeywords(). (GH-12353)
Serhiy Storchaka committed
March 14, 2019
S
bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-12058)
Serhiy Storchaka committed
S
bpo-36254: Fix yet one invalid use of %d in format string in C. (GH-12318)
Serhiy Storchaka committed
March 13, 2019
S
bpo-36282: Improved error message for too much positional arguments. (GH-12310)
Serhiy Storchaka committed
S
bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264)
Serhiy Storchaka committed
February 25, 2019
S
bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112)
Serhiy Storchaka committed
S
bpo-36048: Use __index__() instead of __int__() for implicit conversion if available. (GH-11952)
Serhiy Storchaka committed
January 11, 2019
S
bpo-35582: Argument Clinic: inline parsing code for positional parameters. (GH-11313)
Serhiy Storchaka committed
December 25, 2018
S
bpo-23867: Argument Clinic: inline parsing code for a single positional parameter. (GH-9689)
Serhiy Storchaka committed
December 21, 2018
X
bpo-34193: Fix pluralization in getargs.c and test cases. (GH-8438)
Xtreak committed
November 25, 2018
V
bpo-35081: Add Include/internal/pycore_tupleobject.h (GH-10705)
Victor Stinner committed
November 9, 2018
V
bpo-35199: Add an internal _PyTuple_ITEMS() macro (GH-10434)
Victor Stinner committed
July 22, 2018
July 11, 2018
S
bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192)
Serhiy Storchaka committed
February 4, 2018
L
bpo-32746: Fix multiple typos (GH-5144)
Leo Arias committed
December 15, 2017
S
bpo-32240: Add the const qualifier to declarations of PyObject* array arguments. (#4746)
Serhiy Storchaka committed
September 11, 2017
B
bpo-31373: remove overly strict float range checks (#3486)
Benjamin Peterson committed
September 7, 2017
B
bpo-31373: fix undefined floating-point demotions (#3396)
Benjamin Peterson committed
August 23, 2017
O
August 21, 2017
S
bpo-30923: Silence fall-through warnings included in -Wextra since gcc-7.0. (#3157)
Stefan Krah committed
July 26, 2017
S
bpo-9566: Fix a warning in Python/getargs.c (#2890)
Segev Finer committed
July 10, 2017
S
Remove _PyArg_NoStackKeywords(). (#2641)
Serhiy Storchaka committed
June 9, 2017
S
Fix regression in error message introduced in bpo-29951. (#2028)
Serhiy Storchaka committed
June 6, 2017
S
bpo-30534: Fixed error messages when pass keyword arguments (#1901)
Serhiy Storchaka committed
April 9, 2017
M
bpo-29951: Include function name for some error messages in `PyArg_ParseTuple*` (#916)
Michael Seifert committed
February 6, 2017
S
Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() and
Serhiy Storchaka committed
February 1, 2017
V
Issue #29286: Rename private PyArg_UnpackStack_impl() to unpack_stack()
Victor Stinner committed
January 17, 2017
S
Issue #29029: Speed up processing positional arguments in
Serhiy Storchaka committed
V
Add _PyArg_UnpackStack() function helper
Victor Stinner committed
V
Add _PyArg_NoStackKeywords() helper function
Victor Stinner committed
V
Add _PyArg_ParseStack() helper function
Victor Stinner committed
V
Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords
Victor Stinner committed
January 16, 2017
V
Rename keywords to kwargs in getargs.c
Victor Stinner committed
V
Cleanup getargs.c
Victor Stinner committed
December 16, 2016
S
Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of dict.
Serhiy Storchaka committed
November 20, 2016
S
Issue #19569: Compiler warnings are now emitted if use most of deprecated
Serhiy Storchaka committed
S
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka committed
November 16, 2016
S
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
Serhiy Storchaka committed
S
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString.
Serhiy Storchaka committed
September 21, 2016
C
va_end() all va_copy()ed va_lists.
Christian Heimes committed
B
replace usage of Py_VA_COPY with the (C99) standard va_copy
Benjamin Peterson committed
September 11, 2016
B
Backed out changeset 3934e070c9db
Benjamin Peterson committed
September 10, 2016
V
Issue #27810: Fix getargs.c compilation on Windows
Victor Stinner committed
B
fix export of size_t parse stack function
Benjamin Peterson committed
V
Emit METH_FASTCALL code in Argument Clinic
Victor Stinner committed
V
Add METH_FASTCALL calling convention
Victor Stinner committed
September 6, 2016
B
replace PY_LONG_LONG with long long
Benjamin Peterson committed
B
require a long long data type (closes #27961)
Benjamin Peterson committed
August 14, 2016
S
Issue #27574: Decreased an overhead of parsing keyword arguments in functions
Serhiy Storchaka committed