Kaydet (Commit) 4ac13dfc authored tarafından Neal Norwitz's avatar Neal Norwitz

Remove extra parens

üst 9dbc7dd6
......@@ -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