Skip to content

Commit

Permalink
Remove extra parens
Browse files Browse the repository at this point in the history
  • Loading branch information
nnorwitz committed Dec 19, 2005
1 parent 9dbc7dd commit 4ac13df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Python/getargs.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 4ac13df

Please sign in to comment.