summaryrefslogtreecommitdiff
path: root/Python/getargs.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #29286: Rename private PyArg_UnpackStack_impl() to unpack_stack()Victor Stinner2017-02-011-12/+12
* Issue #29029: Speed up processing positional arguments inSerhiy Storchaka2017-01-171-101/+89
* Add _PyArg_UnpackStack() function helperVictor Stinner2017-01-171-18/+55
* Add _PyArg_NoStackKeywords() helper functionVictor Stinner2017-01-171-4/+21
* Add _PyArg_ParseStack() helper functionVictor Stinner2017-01-171-21/+69
* Rename _PyArg_ParseStack to _PyArg_ParseStackAndKeywordsVictor Stinner2017-01-171-3/+3
* Rename keywords to kwargs in getargs.cVictor Stinner2017-01-171-31/+31
* Cleanup getargs.cVictor Stinner2017-01-161-49/+17
* Issue #28959: Added private macro PyDict_GET_SIZE for retrieving the size of ...Serhiy Storchaka2016-12-161-3/+3
* Issue #19569: Compiler warnings are now emitted if use most of deprecatedSerhiy Storchaka2016-11-201-4/+9
* Added the const qualifier to char* variables that refer to readonly internalSerhiy Storchaka2016-11-201-7/+7
* Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
|\
| * Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualT...Serhiy Storchaka2016-11-161-1/+1
* | va_end() all va_copy()ed va_lists.Christian Heimes2016-09-211-2/+12
* | replace usage of Py_VA_COPY with the (C99) standard va_copyBenjamin Peterson2016-09-201-6/+6
* | Backed out changeset 3934e070c9dbBenjamin Peterson2016-09-101-2/+1
* | Issue #27810: Fix getargs.c compilation on WindowsVictor Stinner2016-09-091-1/+2
* | fix export of size_t parse stack functionBenjamin Peterson2016-09-091-0/+2
* | Emit METH_FASTCALL code in Argument ClinicVictor Stinner2016-09-091-27/+157
* | Add METH_FASTCALL calling conventionVictor Stinner2016-09-091-1/+2
* | replace PY_LONG_LONG with long longBenjamin Peterson2016-09-061-8/+8
* | require a long long data type (closes #27961)Benjamin Peterson2016-09-051-4/+0
* | Issue #27574: Decreased an overhead of parsing keyword arguments in functionsSerhiy Storchaka2016-08-141-12/+437
* | Issue #26282: PyArg_ParseTupleAndKeywords() and Argument Clinic now supportSerhiy Storchaka2016-06-091-42/+79
* | Issue #26057: Got rid of nonneeded use of PyUnicode_FromObject().Serhiy Storchaka2016-04-131-18/+8
* | Minor code cleanup for PyArg_UnpackTuple.Raymond Hettinger2016-03-261-9/+8
* | Issue #26312: SystemError is now raised in all programming bugs with usingSerhiy Storchaka2016-02-111-6/+6
* | Issue #26198: ValueError is now raised instead of TypeError on bufferSerhiy Storchaka2016-02-081-2/+7
* | Issue #26198: Fixed error messages for some argument parsing errors.Serhiy Storchaka2016-02-081-29/+29
|\ \ | |/ |/|
| * Issue #25923: Added more const qualifiers to signatures of static and private...Serhiy Storchaka2015-12-251-29/+29
* | Issue #26198: Fixed error messages for some argument parsing errors.Serhiy Storchaka2016-02-081-12/+20
|/
* Fixed error message for the "u#" format code.Serhiy Storchaka2015-04-191-16/+16
|\
| * Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-051-16/+16
| |\
| | * #16518: Bring error messages in harmony with docs ("bytes-like object")R David Murray2014-10-051-3/+4
| | * Issue #22215: Now ValueError is raised instead of TypeError when str or bytesSerhiy Storchaka2014-09-061-13/+12
| | * Issue #22156: Fix "comparison between signed and unsigned integers" compilerVictor Stinner2014-08-151-2/+2
* | | Fixed error message for the "u#" format code.Serhiy Storchaka2015-04-191-3/+4
|/ /
* | Issue #22581: Use more "bytes-like object" throughout the docs and comments.Serhiy Storchaka2014-12-051-7/+7
|/
* remove dynamic initializer lists for c89 compliance (closes #20595)Benjamin Peterson2014-02-111-3/+11
* Issue #20294: Argument Clinic now supports argument parsing for __new__ andLarry Hastings2014-01-181-1/+20
* PY_FORMAT_SIZE_T should not be used with PyErr_Format(), PyErr_Format("%zd") isVictor Stinner2013-11-181-2/+1
* Use Py_ssize_t type for sizes in getargs.cVictor Stinner2013-11-181-7/+18
* remove an outdated commentVictor Stinner2013-11-071-1/+0
* Re #18521: move array bounds check before array access.Georg Brandl2013-10-141-1/+1
* Issue #9566: Fix compilater warnings on Windows 64-bitVictor Stinner2013-06-051-1/+1
* Use PY_FORMAT_SIZE_T because Visual Studio does not understand %zd format.Richard Oudkerk2013-05-181-1/+1
* Fix compilater warnings on Windows 64-bitVictor Stinner2013-05-171-3/+3
* Issue #17170: speed up PyArg_ParseTuple[AndKeywords] a bit.Antoine Pitrou2013-02-171-25/+32
* Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-204/+221
|\
| * Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641Christian Heimes2012-09-101-0/+1
| |\