summaryrefslogtreecommitdiff
path: root/Python/getargs.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192). (GH-8255)Serhiy Storchaka2018-07-111-1/+1
* Issue #23908: os functions, open() and the io.FileIO constructor now rejectSerhiy Storchaka2016-07-011-1/+18
* Issue #26198: Fixed error messages for some argument parsing errors.Serhiy Storchaka2016-02-081-12/+21
* Added missing va_end in error branch of PyArg_UnpackTuple(). CID 486641Christian Heimes2012-09-101-0/+1
* Issue #10538. Put a reference to the source object in the Py_buffer whenKristján Valur Jónsson2012-03-221-1/+1
* Issue #8651: PyArg_Parse*() functions raise an OverflowError if the fileVictor Stinner2011-05-031-1/+11
* Issue #8651: Fix "z#" format of PyArg_Parse*() function: the size was notVictor Stinner2011-05-031-4/+5
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-1556/+1556
* 14 years later, we still don't know what it's for.Antoine Pitrou2010-04-061-10/+0
* Backported PyCapsule from 3.1, and converted most uses ofLarry Hastings2010-03-251-8/+26
* Issue #5080: turn the DeprecationWarning from float arguments passedMark Dickinson2010-01-011-2/+19
* - Issue #6624: yArg_ParseTuple with "s" format when parsing argument withSean Reifscheider2009-08-011-1/+1
* #5580: no need to use parentheses when converterr() argument is actually a ty...Georg Brandl2009-04-051-1/+1
* fix #4720: the format to PyArg_ParseTupleAndKeywords can now start with '|'Benjamin Peterson2008-12-221-1/+1
* #3668: When PyArg_ParseTuple correctly parses a s* format, but raises anAntoine Pitrou2008-08-291-15/+41
* Fix:Neal Norwitz2008-08-241-3/+7
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-9/+123
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-31/+31
* Renamed PyString to PyBytesChristian Heimes2008-05-261-31/+31
* Patch #1691070 from Roger Upole: Speed up PyArg_ParseTupleAndKeywords() and i...Christian Heimes2008-02-261-154/+109
* Whitespace normalizationNeal Norwitz2008-02-261-6/+6
* Issue #1521: on 64bit platforms, str.decode fails on very long strings.Amaury Forgeot d'Arc2007-11-301-3/+4
* Forward-port of r52136,52138: a review of overflow-detecting code.Armin Rigo2006-10-041-3/+4
* Fix typo.Walter Dörwald2006-09-211-1/+1
* Introduce an upper bound on tuple nesting depth inGeorg Brandl2006-08-091-0/+3
* Part of bug #1523610: fix miscalculation of buffer length.Georg Brandl2006-07-261-2/+10
* Argh. "integer" is a very confusing word ;)Georg Brandl2006-06-081-2/+2
* Bug #1502750: Fix getargs "i" format to use LONG_MIN and LONG_MAX for bounds ...Georg Brandl2006-06-081-2/+2
* C++ compiler cleanup: cast...Skip Montanaro2006-04-181-2/+2
* Make Py_BuildValue, PyObject_CallFunction andMartin v. Löwis2006-04-141-0/+12
* SF Bug #1454485, array.array('u') could crash the interpreter whenNeal Norwitz2006-04-141-5/+2
* Add a test for Py_ssize_t. Correct typo in getargs.c.Georg Brandl2006-04-131-2/+2
* avoid C++ name mangling for the _Py.*SizeT functionsAnthony Baxter2006-04-121-0/+6
* Fix C99-ism, and add XXX to commentThomas Wouters2006-03-011-1/+1
* Use %zd format characters for Py_ssize_t types.Thomas Wouters2006-03-011-6/+6
* Use Py_ssize_t for PyArg_UnpackTuple arguments.Martin v. Löwis2006-03-011-2/+2
* Revert backwards-incompatible const changes.Martin v. Löwis2006-02-271-10/+11
* Based on discussion with Martin and Thomas on python-checkinsNeal Norwitz2006-02-201-1/+1
* Fix compiler warning on amd64. We can't use zd here since this isNeal Norwitz2006-02-191-2/+2
* Use Py_ssize_t to count theMartin v. Löwis2006-02-161-2/+2
* Merge ssize_t branch.Martin v. Löwis2006-02-151-60/+202
* typoGeorg Brandl2006-01-201-1/+1
* Remove extra parensNeal Norwitz2005-12-191-1/+1
* Fix SF bug #1072182, problems with signed characters.Neal Norwitz2005-12-191-4/+4
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-46/+44
* Complete format code support in getargs.c::skipitem(), which is called whenGeorg Brandl2005-09-141-59/+39
* Disallow keyword arguments for type constructors that don't use them.Georg Brandl2005-08-261-0/+26
* I suppose a bug report or even a fix would be a better response, butMichael W. Hudson2005-03-301-1/+2
* Revert previous checkin on getargs 'L' code. Try to convert allMartin v. Löwis2005-03-031-1/+0
* Clear internal call error in 'L' format. Fixes #723201.Martin v. Löwis2005-03-031-0/+1