COMMITS
/ Python/getargs.c 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
June 9, 2016
S
Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now support
Serhiy Storchaka committed
April 13, 2016
S
Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().
Serhiy Storchaka committed
March 26, 2016
R
Minor code cleanup for PyArg_UnpackTuple.
Raymond Hettinger committed
February 11, 2016
S
Issue #26312: SystemError is now raised in all programming bugs with using
Serhiy Storchaka committed
February 7, 2016
S
Issue #26198: ValueError is now raised instead of TypeError on buffer
Serhiy Storchaka committed
S
Issue #26198: Fixed error messages for some argument parsing errors.
Serhiy Storchaka committed
S
Issue #26198: Fixed error messages for some argument parsing errors.
Serhiy Storchaka committed
December 25, 2015
S
Issue #25923: Added more const qualifiers to signatures of static and private functions.
Serhiy Storchaka committed
April 19, 2015
S
Fixed error message for the "u#" format code.
Serhiy Storchaka committed
S
Fixed error message for the "u#" format code.
Serhiy Storchaka committed
December 5, 2014
S
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
Serhiy Storchaka committed
S
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
Serhiy Storchaka committed
October 5, 2014
R
#16518: Bring error messages in harmony with docs ("bytes-like object")
R David Murray committed
September 6, 2014
S
Issue #22215: Now ValueError is raised instead of TypeError when str or bytes
Serhiy Storchaka committed
August 15, 2014
V
Issue #22156: Fix "comparison between signed and unsigned integers" compiler
Victor Stinner committed
February 11, 2014
B
remove dynamic initializer lists for c89 compliance (closes #20595)
Benjamin Peterson committed
January 19, 2014
L
Issue #20294: Argument Clinic now supports argument parsing for __new__ and
Larry Hastings committed