
python-checkins at python
May 7, 2012, 2:45 AM
Views: 32
Permalink
|
|
cpython: Issue #14705: Added support for the new 'p' format unit to skipitem().
|
|
http://hg.python.org/cpython/rev/e4617650f006 changeset: 76816:e4617650f006 user: Larry Hastings <larry [at] hastings> date: Mon May 07 02:44:50 2012 -0700 summary: Issue #14705: Added support for the new 'p' format unit to skipitem(). files: Python/getargs.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/Python/getargs.c b/Python/getargs.c --- a/Python/getargs.c +++ b/Python/getargs.c @@ -1629,6 +1629,7 @@ case 'D': /* complex double */ case 'c': /* char */ case 'C': /* unicode char */ + case 'p': /* boolean predicate */ { (void) va_arg(*p_va, void *); break; -- Repository URL: http://hg.python.org/cpython
|