index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
getargs.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Fix regression in error message introduced in bpo-29951. (#2028)
Serhiy Storchaka
2017-06-09
1
-2/+2
*
bpo-30534: Fixed error messages when pass keyword arguments (#1901)
Serhiy Storchaka
2017-06-06
1
-16/+32
*
bpo-29951: Include function name for some error messages in `PyArg_ParseTuple...
Michael Seifert
2017-04-09
1
-22/+42
*
Issue #29460: _PyArg_NoKeywords(), _PyArg_NoStackKeywords() and
Serhiy Storchaka
2017-02-06
1
-0/+4
*
Issue #29286: Rename private PyArg_UnpackStack_impl() to unpack_stack()
Victor Stinner
2017-02-01
1
-12/+12
*
Issue #29029: Speed up processing positional arguments in
Serhiy Storchaka
2017-01-17
1
-101/+89
*
Add _PyArg_UnpackStack() function helper
Victor Stinner
2017-01-17
1
-18/+55
*
Add _PyArg_NoStackKeywords() helper function
Victor Stinner
2017-01-17
1
-4/+21
*
Add _PyArg_ParseStack() helper function
Victor Stinner
2017-01-17
1
-21/+69
*
Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywords
Victor Stinner
2017-01-17
1
-3/+3
*
Rename keywords to kwargs in getargs.c
Victor Stinner
2017-01-16
1
-31/+31
*
Cleanup getargs.c
Victor Stinner
2017-01-16
1
-49/+17
*
Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...
Serhiy Storchaka
2016-12-16
1
-3/+3
*
Issue #19569: Compiler warnings are now emitted if use most of deprecated
Serhiy Storchaka
2016-11-20
1
-4/+9
*
Added the const qualifier to char* variables that refer to readonly internal
Serhiy Storchaka
2016-11-20
1
-7/+7
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-1/+1
|
\
|
*
Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...
Serhiy Storchaka
2016-11-16
1
-1/+1
*
|
va_end() all va_copy()ed va_lists.
Christian Heimes
2016-09-21
1
-2/+12
*
|
replace usage of Py_VA_COPY with the (C99) standard va_copy
Benjamin Peterson
2016-09-21
1
-6/+6
*
|
Backed out changeset 3934e070c9db
Benjamin Peterson
2016-09-11
1
-2/+1
*
|
Issue #27810: Fix getargs.c compilation on Windows
Victor Stinner
2016-09-10
1
-1/+2
*
|
fix export of size_t parse stack function
Benjamin Peterson
2016-09-10
1
-0/+2
*
|
Emit METH_FASTCALL code in Argument Clinic
Victor Stinner
2016-09-10
1
-27/+157
*
|
Add METH_FASTCALL calling convention
Victor Stinner
2016-09-10
1
-1/+2
*
|
replace PY_LONG_LONG with long long
Benjamin Peterson
2016-09-06
1
-8/+8
*
|
require a long long data type (closes #27961)
Benjamin Peterson
2016-09-06
1
-4/+0
*
|
Issue #27574: Decreased an overhead of parsing keyword arguments in functions
Serhiy Storchaka
2016-08-14
1
-12/+437
*
|
Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now support
Serhiy Storchaka
2016-06-09
1
-42/+79
*
|
Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().
Serhiy Storchaka
2016-04-13
1
-18/+8
*
|
Minor code cleanup for PyArg_UnpackTuple.
Raymond Hettinger
2016-03-26
1
-9/+8
*
|
Issue #26312: SystemError is now raised in all programming bugs with using
Serhiy Storchaka
2016-02-11
1
-6/+6
*
|
Issue #26198: ValueError is now raised instead of TypeError on buffer
Serhiy Storchaka
2016-02-07
1
-2/+7
*
|
Issue #26198: Fixed error messages for some argument parsing errors.
Serhiy Storchaka
2016-02-07
1
-12/+20
|
\
\
|
|
/
|
*
Issue #26198: Fixed error messages for some argument parsing errors.
Serhiy Storchaka
2016-02-07
1
-12/+20
*
|
Issue #25923: Added more const qualifiers to signatures of static and private...
Serhiy Storchaka
2015-12-25
1
-29/+29
|
/
*
Fixed error message for the "u#" format code.
Serhiy Storchaka
2015-04-19
1
-3/+4
|
\
|
*
Fixed error message for the "u#" format code.
Serhiy Storchaka
2015-04-19
1
-3/+4
*
|
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
Serhiy Storchaka
2014-12-05
1
-7/+7
|
\
\
|
|
/
|
*
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
Serhiy Storchaka
2014-12-05
1
-7/+7
*
|
#16518: Bring error messages in harmony with docs ("bytes-like object")
R David Murray
2014-10-05
1
-3/+4
*
|
Issue #22215: Now ValueError is raised instead of TypeError when str or bytes
Serhiy Storchaka
2014-09-06
1
-13/+12
*
|
Issue #22156: Fix "comparison between signed and unsigned integers" compiler
Victor Stinner
2014-08-15
1
-2/+2
|
/
*
remove dynamic initializer lists for c89 compliance (closes #20595)
Benjamin Peterson
2014-02-11
1
-3/+11
*
Issue #20294: Argument Clinic now supports argument parsing for __new__ and
Larry Hastings
2014-01-19
1
-1/+20
*
PY_FORMAT_SIZE_T should not be used with PyErr_Format(), PyErr_Format("%zd") is
Victor Stinner
2013-11-18
1
-2/+1
*
Use Py_ssize_t type for sizes in getargs.c
Victor Stinner
2013-11-18
1
-7/+18
*
remove an outdated comment
Victor Stinner
2013-11-06
1
-1/+0
*
Re #18521: move array bounds check before array access.
Georg Brandl
2013-10-14
1
-1/+1
*
Issue #9566: Fix compilater warnings on Windows 64-bit
Victor Stinner
2013-06-04
1
-1/+1
*
Use PY_FORMAT_SIZE_T because Visual Studio does not understand %zd format.
Richard Oudkerk
2013-05-18
1
-1/+1
[next]