commit | 10ba07a39eadaedd74e291f9d8b6b7f5e5c8702f | [log] [tgz] |
---|---|---|
author | Larry Hastings <larry@hastings.org> | Mon May 07 02:44:50 2012 -0700 |
committer | Larry Hastings <larry@hastings.org> | Mon May 07 02:44:50 2012 -0700 |
tree | 3b6803c370f27494d8a595c87eb2f3a8c9570587 | |
parent | aeb562ee5f3cc2187dc305077ae06f30e385c9e1 [diff] [blame] |
Issue #14705: Added support for the new 'p' format unit to skipitem().
diff --git a/Python/getargs.c b/Python/getargs.c index 9e9695f..78b2328 100644 --- 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;