aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Python/getargs.c
Commit message (Expand)AuthorAge
* Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641Christian Heimes2012-09-10
|\
| * Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641Christian Heimes2012-09-10
* | PyArg_Parse*("U"): ensure that the Unicode string is readyVictor Stinner2012-05-29
* | Issue #14746: Remove redundant paragraphs from skipitem() in Python/getargs.c.Larry Hastings2012-05-08
* | Merge from 3.2. Issue #14749: Add support for 'Z' to skipitem().Larry Hastings2012-05-08
|\|
| * Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c.Larry Hastings2012-05-08
* | Issue #14705: Added support for the new 'p' format unit to skipitem().Larry Hastings2012-05-07
* | Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support.Larry Hastings2012-05-05
* | Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords.Larry Hastings2012-03-20
* | plug memory leak (closes #14325)Benjamin Peterson2012-03-16
* | kill capsule names that we don't need anymoreBenjamin Peterson2012-03-16
* | use memory macrosBenjamin Peterson2012-03-16
* | check result of PyMem_NewBenjamin Peterson2012-03-16
* | Issue #14325: Stop using python lists, capsules, and the garbage collector to...Jean-Paul Calderone2012-03-16
* | convertsimple(): "str without bytes" => "str without characters"Victor Stinner2011-10-13
* | Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE()Victor Stinner2011-10-11
* | Fix usage og PyUnicode_READY()Victor Stinner2011-10-04
* | Implement PEP 393.Martin v. Löwis2011-09-28
* | Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format.Eli Bendersky2011-07-29
* | Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead ofVictor Stinner2011-03-21
* | Remove useless argument of _PyUnicode_AsDefaultEncodedString()Victor Stinner2011-03-02
* | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-22
|/
* Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurredVictor Stinner2011-01-04
* Issue #8992: Simplify addcleanup() APIVictor Stinner2011-01-04
* Issue #8651: PyArg_Parse*() functions raise an OverflowError if the fileVictor Stinner2011-01-04
* handle dict subclasses gracefully in PyArg_ValidateKeywordArgumentsBenjamin Peterson2010-11-17
* Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99Alexander Belopolsky2010-08-11
* Issue #8991: convertbuffer() rejects discontigious buffersVictor Stinner2010-07-28
* Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, useVictor Stinner2010-06-25
* getbuffer(): release the buffer on error (if the buffer is not contiguous)Victor Stinner2010-06-24
* PyArg_Parse*() functions: factorize code for s/z and u/Z formatsVictor Stinner2010-06-24
* Issue #8949: "z" format of PyArg_Parse*() functions doesn't accept bytesVictor Stinner2010-06-24
* getargs.c: remove last reference to "t#" formatVictor Stinner2010-06-13
* Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z"Victor Stinner2010-06-13
* Issue #8950: Make PyArg_Parse* with 'L' code raise for float inputs,Mark Dickinson2010-06-10
* Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing formatVictor Stinner2010-06-08
* PyArg_Parse*("Z#") raises an error for unknown typeVictor Stinner2010-06-08
* convertsimple(): call PyErr_NoMemory() on PyMem_NEW() failureVictor Stinner2010-06-06
* Simplify getbuffer(): convertbuffer() fails anyway if bf_getbuffer is NULLVictor Stinner2010-06-06
* Remove dead codeVictor Stinner2010-05-29
* Issue #8837: Remove "O?" format of PyArg_Parse*() functions. The format is noVictor Stinner2010-05-28
* Issue #6697: Fix a crash if a keyword contains a surrogateVictor Stinner2010-05-19
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-09
* prevent the dict constructor from accepting non-string keyword args #8419Benjamin Peterson2010-04-24
* Merged revisions 79837 via svnmerge fromAntoine Pitrou2010-04-06
* Merged revisions 77218 via svnmerge fromMark Dickinson2010-01-01
* Issue #7414: Add missing 'case 'C'' to skipitem() in getargs.c. ThisMark Dickinson2009-12-03
* Issue 7147 - remove ability to attempt to build Python without complex number...Skip Montanaro2009-10-18
* - Issue #6624: yArg_ParseTuple with "s" format when parsing argument withSean Reifscheider2009-08-01
* Issue #6012: Add cleanup support to O& argument parsing.Martin v. Löwis2009-05-29