From: Neal Norwitz Date: Mon, 19 Dec 2005 06:10:07 +0000 (+0000) Subject: Remove extra parens X-Git-Tag: v2.5a0~976 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4ac13dfc3ad35ebbf9760d6e119b7f8220c52ce5;p=thirdparty%2FPython%2Fcpython.git Remove extra parens --- diff --git a/Python/getargs.c b/Python/getargs.c index 23b91fdbd5cf..15f9df933106 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -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,