COMMITS
/ Python/getargs.c October 14, 2013
G
Re #18521: move array bounds check before array access.
Georg Brandl committed
June 4, 2013
V
Issue #9566: Fix compilater warnings on Windows 64-bit
Victor Stinner committed
May 18, 2013
R
Use PY_FORMAT_SIZE_T because Visual Studio does not understand %zd format.
Richard Oudkerk committed
May 16, 2013
V
Fix compilater warnings on Windows 64-bit
Victor Stinner committed
February 17, 2013
A
Issue #17170: speed up PyArg_ParseTuple[AndKeywords] a bit.
Antoine Pitrou committed
February 9, 2013
A
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter.
Antoine Pitrou committed
A
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in the interpreter.
Antoine Pitrou committed
September 10, 2012
C
Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641
Christian Heimes committed
C
Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641
Christian Heimes committed
May 29, 2012
V
PyArg_Parse*("U"): ensure that the Unicode string is ready
Victor Stinner committed
May 9, 2012
L
Issue #14746: Remove redundant paragraphs from skipitem() in Python/getargs.c.
Larry Hastings committed
May 8, 2012
L
Merge from 3.2. Issue #14749: Add support for 'Z' to skipitem().
Larry Hastings committed
L
Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c.
Larry Hastings committed
May 7, 2012
L
Issue #14705: Added support for the new 'p' format unit to skipitem().
Larry Hastings committed
May 5, 2012
L
Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support.
Larry Hastings committed
March 20, 2012
L
Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords.
Larry Hastings committed
March 16, 2012
B
plug memory leak (closes #14325)
Benjamin Peterson committed
B
kill capsule names that we don't need anymore
Benjamin Peterson committed
B
use memory macros
Benjamin Peterson committed
B
check result of PyMem_New
Benjamin Peterson committed
J
Issue #14325: Stop using python lists, capsules, and the garbage collector to deal with PyArg_Parse* cleanup.
Jean-Paul Calderone committed
October 13, 2011
V
convertsimple(): "str without bytes" => "str without characters"
Victor Stinner committed
October 11, 2011
V
Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE()
Victor Stinner committed
October 4, 2011
V
Fix usage og PyUnicode_READY()
Victor Stinner committed
September 28, 2011
M
Implement PEP 393.
Martin v. Löwis committed
July 29, 2011
E
Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format.
Eli Bendersky committed
March 21, 2011
V
Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead of
Victor Stinner committed
March 2, 2011
V
Remove useless argument of _PyUnicode_AsDefaultEncodedString()
Victor Stinner committed
February 22, 2011
B
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon committed
January 4, 2011
V
Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurred
Victor Stinner committed
V
Issue #8992: Simplify addcleanup() API
Victor Stinner committed
V
Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file
Victor Stinner committed
November 17, 2010
B
handle dict subclasses gracefully in PyArg_ValidateKeywordArguments
Benjamin Peterson committed
August 11, 2010
A
Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99
Alexander Belopolsky committed
July 28, 2010
V
Issue #8991: convertbuffer() rejects discontigious buffers
Victor Stinner committed
June 25, 2010
V
Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, use
Victor Stinner committed
June 24, 2010
V
getbuffer(): release the buffer on error (if the buffer is not contiguous)
Victor Stinner committed
V
PyArg_Parse*() functions: factorize code for s/z and u/Z formats
Victor Stinner committed
V
Issue #8949: "z" format of PyArg_Parse*() functions doesn't accept bytes
Victor Stinner committed
June 13, 2010
V
getargs.c: remove last reference to "t#" format
Victor Stinner committed
V
Issue #8592: PyArg_Parse*() functions raise a TypeError for "y", "u" and "Z"
Victor Stinner committed
June 10, 2010
M
Issue #8950: Make PyArg_Parse* with 'L' code raise for float inputs,
Mark Dickinson committed
June 8, 2010
V
Issue #8838, #8339: Remove codecs.charbuffer_encode() and "t#" parsing format
Victor Stinner committed
V
PyArg_Parse*("Z#") raises an error for unknown type
Victor Stinner committed
June 6, 2010
V
convertsimple(): call PyErr_NoMemory() on PyMem_NEW() failure
Victor Stinner committed
V
Simplify getbuffer(): convertbuffer() fails anyway if bf_getbuffer is NULL
Victor Stinner committed
May 29, 2010
V
Remove dead code
Victor Stinner committed
May 28, 2010
V
Issue #8837: Remove "O?" format of PyArg_Parse*() functions. The format is no
Victor Stinner committed
May 19, 2010
V
Issue #6697: Fix a crash if a keyword contains a surrogate
Victor Stinner committed
May 9, 2010
A
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou committed