mirror of
https://github.com/python/cpython.git
synced 2025-09-14 04:37:29 +00:00
Remove extra parens
This commit is contained in:
parent
9dbc7dd6f2
commit
4ac13dfc3a
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ vgetargs1(PyObject *args, const char *format, va_list *p_va, int compat)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*format != '\0' && !isalpha(Py_CHARMASK((*format))) &&
|
if (*format != '\0' && !isalpha(Py_CHARMASK(*format)) &&
|
||||||
*format != '(' &&
|
*format != '(' &&
|
||||||
*format != '|' && *format != ':' && *format != ';') {
|
*format != '|' && *format != ':' && *format != ';') {
|
||||||
PyErr_Format(PyExc_SystemError,
|
PyErr_Format(PyExc_SystemError,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue