COMMITS
/ Python/getargs.c February 7, 2016
S
Issue #26198: Fixed error messages for some argument parsing errors.
Serhiy Storchaka committed
April 19, 2015
S
Fixed error message for the "u#" format code.
Serhiy Storchaka committed
S
Fixed error message for the "u#" format code.
Serhiy Storchaka committed
December 5, 2014
S
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
Serhiy Storchaka committed
S
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
Serhiy Storchaka committed
October 5, 2014
R
#16518: Bring error messages in harmony with docs ("bytes-like object")
R David Murray committed
September 6, 2014
S
Issue #22215: Now ValueError is raised instead of TypeError when str or bytes
Serhiy Storchaka committed
August 15, 2014
V
Issue #22156: Fix "comparison between signed and unsigned integers" compiler
Victor Stinner committed
February 11, 2014
B
remove dynamic initializer lists for c89 compliance (closes #20595)
Benjamin Peterson committed
January 19, 2014
L
Issue #20294: Argument Clinic now supports argument parsing for __new__ and
Larry Hastings committed
November 18, 2013
V
PY_FORMAT_SIZE_T should not be used with PyErr_Format(), PyErr_Format("%zd") is
Victor Stinner committed
V
Use Py_ssize_t type for sizes in getargs.c
Victor Stinner committed
November 6, 2013
V
remove an outdated comment
Victor Stinner committed
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