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
*
Merged revisions 46753-51188 via svnmerge from
Thomas Wouters
2006-08-11
1
-2/+13
*
Get rid of most of the flags (in tp_flags) that keep track of various
Guido van Rossum
2006-07-27
1
-3/+1
*
Merge p3yk branch with the trunk up to revision 45595. This breaks a fair
Thomas Wouters
2006-04-21
1
-9/+24
*
Checkpoint. 218 tests are okay; 53 are failing. Done so far:
Guido van Rossum
2006-03-15
1
-5/+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
*
Rename LONG_LONG to PY_LONG_LONG. Fixes #710285.
Martin v. Löwis
2003-03-29
1
-6/+6
*
If a float is passed where a int is expected, issue a DeprecationWarning
Neil Schemenauer
2003-02-04
1
-12/+25
*
Raise a TypeError if a float is passed when an integer is specified.
Neil Schemenauer
2003-01-24
1
-6/+24
*
Wrap uargs declaration in a #ifdef Py_USING_UNICODE, so that
Walter Dörwald
2002-11-21
1
-0/+2
*
Patch #554716: Use __va_copy where available.
Martin v. Löwis
2002-07-28
1
-0/+4
*
Fix by Greg Chapman from SF bug 534347: Potential AV in vgetargskeywords.
Guido van Rossum
2002-04-04
1
-1/+7
*
Fixed "u#" parser marker to pass through Unicode objects as-is without
Marc-André Lemburg
2002-01-09
1
-2/+6
*
mysnprintf.c: Massive rewrite of PyOS_snprintf and PyOS_vsnprintf, to
Tim Peters
2001-12-03
1
-3/+3
*
SF bug 486278 SystemError: Python/getargs.c:1086: bad.
Tim Peters
2001-11-29
1
-7/+10
*
Two screwups fixed for sizeof(char *) instead of sizeof(char []).
Jeremy Hylton
2001-11-28
1
-77/+82
*
Use PyOS_snprintf() at some cost even though it was correct before.
Jeremy Hylton
2001-11-28
1
-6/+7
*
Use PyOS_snprintf when possible.
Jeremy Hylton
2001-11-28
1
-34/+41
*
Fixes for possible buffer overflows in sprintf() usages.
Marc-André Lemburg
2001-11-28
1
-14/+9
*
vgetargskeywords()
Tim Peters
2001-10-27
1
-16/+17
*
vgetargskeywords: Now that it's clear that nkwlist must equal max, and
Tim Peters
2001-10-27
1
-4/+3
*
vgetargskeywords: Prevent another potential sprintf buffer overrun.
Tim Peters
2001-10-27
1
-2/+2
*
vgetargskeywords: Verify kwlist has the required length while parsing
Tim Peters
2001-10-27
1
-20/+24
*
vgetargskeywords: Removed all PyErr_Clear() calls. It's possible that
Tim Peters
2001-10-27
1
-4/+8
*
vgetargskeywords: The keywords arg is a dict (if non-NULL), so use the
Tim Peters
2001-10-27
1
-5/+5
*
vgetargskeywords: Removed one of the mysterious PyErr_Clear() calls.
Tim Peters
2001-10-27
1
-10/+1
*
vgetargskeywords:
Tim Peters
2001-10-27
1
-16/+9
*
vgetargskeywords:
Tim Peters
2001-10-27
1
-20/+7
*
vgetargskeywords:
Tim Peters
2001-10-27
1
-12/+13
*
vgetargskeywords:
Tim Peters
2001-10-27
1
-15/+10
[next]