summaryrefslogtreecommitdiff
path: root/Python/getargs.c
Commit message (Expand)AuthorAgeFilesLines
* 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
| |\
| * | PyArg_Parse*("U"): ensure that the Unicode string is readyVictor Stinner2012-05-291-1/+4
| * | Issue #14746: Remove redundant paragraphs from skipitem() in Python/getargs.c.Larry Hastings2012-05-081-18/+8
| * | Merge from 3.2. Issue #14749: Add support for 'Z' to skipitem().Larry Hastings2012-05-081-0/+1
| |\ \
| * | | Issue #14705: Added support for the new 'p' format unit to skipitem().Larry Hastings2012-05-071-0/+1
| * | | Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support.Larry Hastings2012-05-051-0/+12
| * | | Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords.Larry Hastings2012-03-201-1/+33
| * | | plug memory leak (closes #14325)Benjamin Peterson2012-03-161-1/+1
| * | | kill capsule names that we don't need anymoreBenjamin Peterson2012-03-161-4/+0
| * | | use memory macrosBenjamin Peterson2012-03-161-3/+3
| * | | check result of PyMem_NewBenjamin Peterson2012-03-161-0/+8
| * | | Issue #14325: Stop using python lists, capsules, and the garbage collector to...Jean-Paul Calderone2012-03-161-120/+85
| * | | convertsimple(): "str without bytes" => "str without characters"Victor Stinner2011-10-131-3/+3
| * | | Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE()Victor Stinner2011-10-111-4/+6
| * | | Fix usage og PyUnicode_READY()Victor Stinner2011-10-041-7/+14
| * | | Implement PEP 393.Martin v. Löwis2011-09-281-21/+25
| * | | Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format.Eli Bendersky2011-07-291-0/+2
| * | | Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead ofVictor Stinner2011-03-211-26/+22
| * | | Remove useless argument of _PyUnicode_AsDefaultEncodedString()Victor Stinner2011-03-021-1/+1
| * | | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-3/+2
* | | | Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...Antoine Pitrou2013-02-091-3/+3
| |_|/ |/| |
* | | Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641Christian Heimes2012-09-101-0/+1
| |/ |/|
* | Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c.Larry Hastings2012-05-081-0/+1
|/
* Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurredVictor Stinner2011-01-041-38/+41
* Issue #8992: Simplify addcleanup() APIVictor Stinner2011-01-041-13/+15