summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Python/compile.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 068c10e..f39c794 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -3108,7 +3108,7 @@ com_arglist(c, n)
if (nameval == NULL) {
c->c_errors++;
}
- if (PyDict_GetItem(c->c_locals, nameval)) {
+ if (PyDict_GetItem(c->c_locals, nameval)) {
com_error(c, PyExc_SyntaxError,"duplicate argument in function definition");
}
com_newlocal_o(c, nameval);