mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
suppress unnecessary error message if too many arguments are passed
This commit is contained in:
parent
a43111118f
commit
a93265a666
1 changed files with 5 additions and 2 deletions
|
@ -114,7 +114,7 @@ do_arg(arg, p_format, p_va)
|
|||
|
||||
switch (*format++) {
|
||||
|
||||
case '('/*')'*/: /* tuple, distributed over C parameters */ {
|
||||
case '(': /* tuple, distributed over C parameters */ {
|
||||
int i, n;
|
||||
if (!is_tupleobject(arg))
|
||||
return 0;
|
||||
|
@ -123,11 +123,14 @@ do_arg(arg, p_format, p_va)
|
|||
if (!do_arg(gettupleitem(arg, i), &format, &va))
|
||||
return 0;
|
||||
}
|
||||
if (*format++ != /*'('*/')')
|
||||
if (*format++ != ')')
|
||||
return 0;
|
||||
break;
|
||||
}
|
||||
|
||||
case ')': /* End of format -- too many arguments */
|
||||
return 0;
|
||||
|
||||
case 'b': /* byte -- very short int */ {
|
||||
char *p = va_arg(va, char *);
|
||||
if (is_intobject(arg))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue