summaryrefslogtreecommitdiffstats
path: root/Python/getargs.c
Commit message (Expand)AuthorAgeFilesLines
...
* Ugh, hopefully I can get this right. The code is only compiled on Win64Neal Norwitz2007-08-311-1/+1
* Try to fix the problem of passing a non-int on Win64 right this time.Neal Norwitz2007-08-311-2/+5
* Try to fix a problem with large values on Win64. Diagnosed by Thomas HellerNeal Norwitz2007-08-311-1/+1
* Three patches from issue #1047, by Amaury Forgeot d'Arc:Guido van Rossum2007-08-291-0/+28
* Merged in py3k-buffer branch to main line. All objects now use the buffer pr...Travis E. Oliphant2007-08-181-18/+37
* Revert r56044 (which changed the %c format specifier to accept aWalter Dörwald2007-07-011-0/+13
* Change %c format specifier for PyArg_ParseTuple() so that it acceptsWalter Dörwald2007-06-201-4/+3
* Be more robust around bytes for e[st]#? formats.Guido van Rossum2007-05-091-4/+8
* Checkpoint. A b it closer to working pickles and pickletools.Guido van Rossum2007-05-071-0/+10
* Change UnicodeDecodeError objects so that the 'object' attributeWalter Dörwald2007-05-041-0/+27
* Compare and hash unicode objects like their UTF-8 representations.Guido van Rossum2007-05-041-1/+5
* More coding by random modification.Guido van Rossum2007-05-041-12/+12
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-24/+0
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-271-2/+2
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-3/+1
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-4/+5
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-2/+13
* Get rid of most of the flags (in tp_flags) that keep track of variousGuido van Rossum2006-07-271-3/+1
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-9/+24
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-151-5/+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
* FixMichael W. Hudson2004-08-071-9/+7
* Add PyArg_VaParseTupleAndKeywords(). Document this function andBrett Cannon2004-07-101-0/+36
* Patch #684981: Add cleanup capability for argument parsers. Fixes 501716.Martin v. Löwis2003-05-031-28/+90
* Roll back changes to 'h' format code -- too much breaks. OtherGuido van Rossum2003-04-181-5/+5
* SF # 595026: support for masks in getargs.c.Thomas Heller2003-04-171-27/+49
* Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.Martin v. Löwis2003-03-291-6/+6
* If a float is passed where a int is expected, issue a DeprecationWarningNeil Schemenauer2003-02-041-12/+25
* Raise a TypeError if a float is passed when an integer is specified.Neil Schemenauer2003-01-241-6/+24
* Wrap uargs declaration in a #ifdef Py_USING_UNICODE, so thatWalter Dörwald2002-11-211-0/+2
* Patch #554716: Use __va_copy where available.Martin v. Löwis2002-07-281-0/+4
* Fix by Greg Chapman from SF bug 534347: Potential AV in vgetargskeywords.Guido van Rossum2002-04-041-1/+7
* Fixed "u#" parser marker to pass through Unicode objects as-is withoutMarc-André Lemburg2002-01-091-2/+6
* mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, toTim Peters2001-12-031-3/+3