Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 4ac13df

Browse files
committed
Remove extra parens
1 parent 9dbc7dd commit 4ac13df

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/getargs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ vgetargs1(PyObject *args, const char *format, va_list *p_va, int compat)
255255
}
256256
}
257257

258-
if (*format != '\0' && !isalpha(Py_CHARMASK((*format))) &&
258+
if (*format != '\0' && !isalpha(Py_CHARMASK(*format)) &&
259259
*format != '(' &&
260260
*format != '|' && *format != ':' && *format != ';') {
261261
PyErr_Format(PyExc_SystemError,

0 commit comments

Comments
 (0)