index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
getargs.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Issue #26198: Fixed error messages for some argument parsing errors.
Serhiy Storchaka
2016-02-07
1
-12/+20
*
Fixed error message for the "u#" format code.
Serhiy Storchaka
2015-04-19
1
-3/+4
|
\
|
*
Fixed error message for the "u#" format code.
Serhiy Storchaka
2015-04-19
1
-3/+4
*
|
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
Serhiy Storchaka
2014-12-05
1
-7/+7
|
\
\
|
|
/
|
*
Issue #22581: Use more "bytes-like object" throughout the docs and comments.
Serhiy Storchaka
2014-12-05
1
-7/+7
*
|
#16518: Bring error messages in harmony with docs ("bytes-like object")
R David Murray
2014-10-05
1
-3/+4
*
|
Issue #22215: Now ValueError is raised instead of TypeError when str or bytes
Serhiy Storchaka
2014-09-06
1
-13/+12
*
|
Issue #22156: Fix "comparison between signed and unsigned integers" compiler
Victor Stinner
2014-08-15
1
-2/+2
|
/
*
remove dynamic initializer lists for c89 compliance (closes #20595)
Benjamin Peterson
2014-02-11
1
-3/+11
*
Issue #20294: Argument Clinic now supports argument parsing for __new__ and
Larry Hastings
2014-01-19
1
-1/+20
*
PY_FORMAT_SIZE_T should not be used with PyErr_Format(), PyErr_Format("%zd") is
Victor Stinner
2013-11-18
1
-2/+1
*
Use Py_ssize_t type for sizes in getargs.c
Victor Stinner
2013-11-18
1
-7/+18
*
remove an outdated comment
Victor Stinner
2013-11-06
1
-1/+0
*
Re #18521: move array bounds check before array access.
Georg Brandl
2013-10-14
1
-1/+1
*
Issue #9566: Fix compilater warnings on Windows 64-bit
Victor Stinner
2013-06-04
1
-1/+1
*
Use PY_FORMAT_SIZE_T because Visual Studio does not understand %zd format.
Richard Oudkerk
2013-05-18
1
-1/+1
*
Fix compilater warnings on Windows 64-bit
Victor Stinner
2013-05-16
1
-3/+3
*
Issue #17170: speed up PyArg_ParseTuple[AndKeywords] a bit.
Antoine Pitrou
2013-02-17
1
-25/+32
*
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...
Antoine Pitrou
2013-02-09
1
-3/+3
|
\
|
*
Issue #17173: Remove uses of locale-dependent C functions (isalpha() etc.) in...
Antoine Pitrou
2013-02-09
1
-3/+3
*
|
Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641
Christian Heimes
2012-09-10
1
-0/+1
|
\
\
|
|
/
|
*
Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641
Christian Heimes
2012-09-10
1
-0/+1
*
|
PyArg_Parse*("U"): ensure that the Unicode string is ready
Victor Stinner
2012-05-29
1
-1/+4
*
|
Issue #14746: Remove redundant paragraphs from skipitem() in Python/getargs.c.
Larry Hastings
2012-05-09
1
-18/+8
*
|
Merge from 3.2. Issue #14749: Add support for 'Z' to skipitem().
Larry Hastings
2012-05-08
1
-0/+1
|
\
\
|
|
/
|
*
Issue #14749: Add support for 'Z' to skipitem() in Python/getargs.c.
Larry Hastings
2012-05-08
1
-0/+1
*
|
Issue #14705: Added support for the new 'p' format unit to skipitem().
Larry Hastings
2012-05-07
1
-0/+1
*
|
Issue #14705: Add 'p' format character to PyArg_ParseTuple* for bool support.
Larry Hastings
2012-05-05
1
-0/+12
*
|
Issue #14328: Add keyword-only parameters to PyArg_ParseTupleAndKeywords.
Larry Hastings
2012-03-20
1
-1/+33
*
|
plug memory leak (closes #14325)
Benjamin Peterson
2012-03-16
1
-1/+1
*
|
kill capsule names that we don't need anymore
Benjamin Peterson
2012-03-16
1
-4/+0
*
|
use memory macros
Benjamin Peterson
2012-03-16
1
-3/+3
*
|
check result of PyMem_New
Benjamin Peterson
2012-03-16
1
-0/+8
*
|
Issue #14325: Stop using python lists, capsules, and the garbage collector to...
Jean-Paul Calderone
2012-03-16
1
-120/+85
*
|
convertsimple(): "str without bytes" => "str without characters"
Victor Stinner
2011-10-13
1
-3/+3
*
|
Use PyUnicode_AsUnicodeAndSize() instead of PyUnicode_GET_SIZE()
Victor Stinner
2011-10-11
1
-4/+6
*
|
Fix usage og PyUnicode_READY()
Victor Stinner
2011-10-04
1
-7/+14
*
|
Implement PEP 393.
Martin v. Löwis
2011-09-28
1
-21/+25
*
|
Issue #12380: PyArg_ParseTuple now accepts a bytearray for the 'c' format.
Eli Bendersky
2011-07-29
1
-0/+2
*
|
Issue #10833: Use PyErr_Format() and PyUnicode_FromFormat() instead of
Victor Stinner
2011-03-21
1
-26/+22
*
|
Remove useless argument of _PyUnicode_AsDefaultEncodedString()
Victor Stinner
2011-03-02
1
-1/+1
*
|
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon
2011-02-22
1
-3/+2
|
/
*
Issue #8992: convertsimple() doesn't need to fill msgbuf if an error occurred
Victor Stinner
2011-01-04
1
-38/+41
*
Issue #8992: Simplify addcleanup() API
Victor Stinner
2011-01-04
1
-13/+15
*
Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file
Victor Stinner
2011-01-04
1
-1/+11
*
handle dict subclasses gracefully in PyArg_ValidateKeywordArguments
Benjamin Peterson
2010-11-17
1
-1/+1
*
Issue #2443: Added a new macro, Py_VA_COPY, which is equivalent to C99
Alexander Belopolsky
2010-08-11
1
-36/+4
*
Issue #8991: convertbuffer() rejects discontigious buffers
Victor Stinner
2010-07-28
1
-21/+8
*
Issue #8850: Remove "w" and "w#" formats from PyArg_Parse*() functions, use
Victor Stinner
2010-06-25
1
-47/+17
*
getbuffer(): release the buffer on error (if the buffer is not contiguous)
Victor Stinner
2010-06-24
1
-0/+1
[next]