Commit b70e9434 authored by Neal Norwitz's avatar Neal Norwitz

Remove extra parens

parent 38764fc7
......@@ -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 != ';') {
PyErr_Format(PyExc_SystemError,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment