| Commit message (Expand) | Author | Age | Files | Lines |
* | Issue #8651: PyArg_Parse*() functions raise an OverflowError if the file | Victor Stinner | 2011-05-03 | 1 | -1/+11 |
* | Issue #8651: Fix "z#" format of PyArg_Parse*() function: the size was not | Victor Stinner | 2011-05-03 | 1 | -4/+5 |
* | Untabify C files. Will watch buildbots. | Antoine Pitrou | 2010-05-09 | 1 | -1556/+1556 |
* | 14 years later, we still don't know what it's for. | Antoine Pitrou | 2010-04-06 | 1 | -10/+0 |
* | Backported PyCapsule from 3.1, and converted most uses of | Larry Hastings | 2010-03-25 | 1 | -8/+26 |
* | Issue #5080: turn the DeprecationWarning from float arguments passed | Mark Dickinson | 2010-01-01 | 1 | -2/+19 |
* | - Issue #6624: yArg_ParseTuple with "s" format when parsing argument with | Sean Reifscheider | 2009-08-01 | 1 | -1/+1 |
* | #5580: no need to use parentheses when converterr() argument is actually a ty... | Georg Brandl | 2009-04-05 | 1 | -1/+1 |
* | fix #4720: the format to PyArg_ParseTupleAndKeywords can now start with '|' | Benjamin Peterson | 2008-12-22 | 1 | -1/+1 |
* | #3668: When PyArg_ParseTuple correctly parses a s* format, but raises an | Antoine Pitrou | 2008-08-29 | 1 | -15/+41 |
* | Fix: | Neal Norwitz | 2008-08-24 | 1 | -3/+7 |
* | Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple, | Martin v. Löwis | 2008-08-12 | 1 | -9/+123 |
* | This reverts r63675 based on the discussion in this thread: | Gregory P. Smith | 2008-06-09 | 1 | -31/+31 |
* | Renamed PyString to PyBytes | Christian Heimes | 2008-05-26 | 1 | -31/+31 |
* | Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and i... | Christian Heimes | 2008-02-26 | 1 | -154/+109 |
* | Whitespace normalization | Neal Norwitz | 2008-02-26 | 1 | -6/+6 |
* | Issue #1521: on 64bit platforms, str.decode fails on very long strings. | Amaury Forgeot d'Arc | 2007-11-30 | 1 | -3/+4 |
* | Forward-port of r52136,52138: a review of overflow-detecting code. | Armin Rigo | 2006-10-04 | 1 | -3/+4 |
* | Fix typo. | Walter Dörwald | 2006-09-21 | 1 | -1/+1 |
* | Introduce an upper bound on tuple nesting depth in | Georg Brandl | 2006-08-09 | 1 | -0/+3 |
* | Part of bug #1523610: fix miscalculation of buffer length. | Georg Brandl | 2006-07-26 | 1 | -2/+10 |
* | Argh. "integer" is a very confusing word ;) | Georg Brandl | 2006-06-08 | 1 | -2/+2 |
* | Bug #1502750: Fix getargs "i" format to use LONG_MIN and LONG_MAX for bounds ... | Georg Brandl | 2006-06-08 | 1 | -2/+2 |
* | C++ compiler cleanup: cast... | Skip Montanaro | 2006-04-18 | 1 | -2/+2 |
* | Make Py_BuildValue, PyObject_CallFunction and | Martin v. Löwis | 2006-04-14 | 1 | -0/+12 |
* | SF Bug #1454485, array.array('u') could crash the interpreter when | Neal Norwitz | 2006-04-14 | 1 | -5/+2 |
* | Add a test for Py_ssize_t. Correct typo in getargs.c. | Georg Brandl | 2006-04-13 | 1 | -2/+2 |
* | avoid C++ name mangling for the _Py.*SizeT functions | Anthony Baxter | 2006-04-12 | 1 | -0/+6 |
* | Fix C99-ism, and add XXX to comment | Thomas Wouters | 2006-03-01 | 1 | -1/+1 |
* | Use %zd format characters for Py_ssize_t types. | Thomas Wouters | 2006-03-01 | 1 | -6/+6 |
* | Use Py_ssize_t for PyArg_UnpackTuple arguments. | Martin v. Löwis | 2006-03-01 | 1 | -2/+2 |
* | Revert backwards-incompatible const changes. | Martin v. Löwis | 2006-02-27 | 1 | -10/+11 |
* | Based on discussion with Martin and Thomas on python-checkins | Neal Norwitz | 2006-02-20 | 1 | -1/+1 |
* | Fix compiler warning on amd64. We can't use zd here since this is | Neal Norwitz | 2006-02-19 | 1 | -2/+2 |
* | Use Py_ssize_t to count the | Martin v. Löwis | 2006-02-16 | 1 | -2/+2 |
* | Merge ssize_t branch. | Martin v. Löwis | 2006-02-15 | 1 | -60/+202 |
* | typo | Georg Brandl | 2006-01-20 | 1 | -1/+1 |
* | Remove extra parens | Neal Norwitz | 2005-12-19 | 1 | -1/+1 |
* | Fix SF bug #1072182, problems with signed characters. | Neal Norwitz | 2005-12-19 | 1 | -4/+4 |
* | Add const to several API functions that take char *. | Jeremy Hylton | 2005-12-10 | 1 | -46/+44 |
* | Complete format code support in getargs.c::skipitem(), which is called when | Georg Brandl | 2005-09-14 | 1 | -59/+39 |
* | Disallow keyword arguments for type constructors that don't use them. | Georg Brandl | 2005-08-26 | 1 | -0/+26 |
* | I suppose a bug report or even a fix would be a better response, but | Michael W. Hudson | 2005-03-30 | 1 | -1/+2 |
* | Revert previous checkin on getargs 'L' code. Try to convert all | Martin v. Löwis | 2005-03-03 | 1 | -1/+0 |
* | Clear internal call error in 'L' format. Fixes #723201. | Martin v. Löwis | 2005-03-03 | 1 | -0/+1 |
* | Fix | Michael W. Hudson | 2004-08-07 | 1 | -9/+7 |
* | Add PyArg_VaParseTupleAndKeywords(). Document this function and | Brett Cannon | 2004-07-10 | 1 | -0/+36 |
* | Patch #684981: Add cleanup capability for argument parsers. Fixes 501716. | Martin v. Löwis | 2003-05-03 | 1 | -28/+90 |
* | Roll back changes to 'h' format code -- too much breaks. Other | Guido van Rossum | 2003-04-18 | 1 | -5/+5 |
* | SF # 595026: support for masks in getargs.c. | Thomas Heller | 2003-04-17 | 1 | -27/+49 |