mirror of
https://github.com/python/cpython.git
synced 2025-07-16 15:55:18 +00:00
Issue #14746: Remove redundant paragraphs from skipitem() in Python/getargs.c.
This commit is contained in:
parent
7ca8d1f748
commit
a34790104c
1 changed files with 8 additions and 18 deletions
|
@ -1609,8 +1609,10 @@ skipitem(const char **p_format, va_list *p_va, int flags)
|
|||
|
||||
switch (c) {
|
||||
|
||||
/* simple codes
|
||||
* The individual types (second arg of va_arg) are irrelevant */
|
||||
/*
|
||||
* codes that take a single data pointer as an argument
|
||||
* (the type of the pointer is irrelevant)
|
||||
*/
|
||||
|
||||
case 'b': /* byte -- very short int */
|
||||
case 'B': /* byte as bitfield */
|
||||
|
@ -1624,23 +1626,21 @@ skipitem(const char **p_format, va_list *p_va, int flags)
|
|||
case 'L': /* PY_LONG_LONG */
|
||||
case 'K': /* PY_LONG_LONG sized bitfield */
|
||||
#endif
|
||||
case 'n': /* Py_ssize_t */
|
||||
case 'f': /* float */
|
||||
case 'd': /* double */
|
||||
case 'D': /* complex double */
|
||||
case 'c': /* char */
|
||||
case 'C': /* unicode char */
|
||||
case 'p': /* boolean predicate */
|
||||
case 'S': /* string object */
|
||||
case 'Y': /* string object */
|
||||
case 'U': /* unicode string object */
|
||||
{
|
||||
(void) va_arg(*p_va, void *);
|
||||
break;
|
||||
}
|
||||
|
||||
case 'n': /* Py_ssize_t */
|
||||
{
|
||||
(void) va_arg(*p_va, Py_ssize_t *);
|
||||
break;
|
||||
}
|
||||
|
||||
/* string codes */
|
||||
|
||||
case 'e': /* string with encoding */
|
||||
|
@ -1673,16 +1673,6 @@ skipitem(const char **p_format, va_list *p_va, int flags)
|
|||
break;
|
||||
}
|
||||
|
||||
/* object codes */
|
||||
|
||||
case 'S': /* string object */
|
||||
case 'Y': /* string object */
|
||||
case 'U': /* unicode string object */
|
||||
{
|
||||
(void) va_arg(*p_va, PyObject **);
|
||||
break;
|
||||
}
|
||||
|
||||
case 'O': /* object */
|
||||
{
|
||||
if (*format == '!') {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue