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
*
Revert r56044 (which changed the %c format specifier to accept a
Walter Dörwald
2007-07-01
1
-0/+13
*
Change %c format specifier for PyArg_ParseTuple() so that it accepts
Walter Dörwald
2007-06-20
1
-4/+3
*
Be more robust around bytes for e[st]#? formats.
Guido van Rossum
2007-05-09
1
-4/+8
*
Checkpoint. A b it closer to working pickles and pickletools.
Guido van Rossum
2007-05-07
1
-0/+10
*
Change UnicodeDecodeError objects so that the 'object' attribute
Walter Dörwald
2007-05-04
1
-0/+27
*
Compare and hash unicode objects like their UTF-8 representations.
Guido van Rossum
2007-05-04
1
-1/+5
*
More coding by random modification.
Guido van Rossum
2007-05-04
1
-12/+12
*
Get rid of all #ifdef Py_USING_UNICODE (it is always present now).
Guido van Rossum
2007-05-03
1
-24/+0
*
Checkpoint. Manipulated things so that string literals are always
Guido van Rossum
2007-04-27
1
-2/+2
*
Merged the int/long unification branch, by very crude means (sorry Thomas!).
Guido van Rossum
2007-01-14
1
-3/+1
*
Four months of trunk changes (including a few releases...)
Thomas Wouters
2006-12-13
1
-4/+5
*
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
[next]