summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorNeal Norwitz <nnorwitz@gmail.com>2005-12-19 06:10:07 (GMT)
committerNeal Norwitz <nnorwitz@gmail.com>2005-12-19 06:10:07 (GMT)
commit4ac13dfc3ad35ebbf9760d6e119b7f8220c52ce5 (patch)
tree58112ccc5f9b1ca3dad463d7907ec2609a530235 /Python
parent9dbc7dd6f259a34fee5b8395e7f7ab205036364c (diff)
downloadcpython-4ac13dfc3ad35ebbf9760d6e119b7f8220c52ce5.zip
cpython-4ac13dfc3ad35ebbf9760d6e119b7f8220c52ce5.tar.gz
cpython-4ac13dfc3ad35ebbf9760d6e119b7f8220c52ce5.tar.bz2
Remove extra parens
Diffstat (limited to 'Python')
-rw-r--r--Python/getargs.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getargs.c b/Python/getargs.c
index 23b91fd..15f9df93 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,