summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
diff options
context:
space:
mode:
authorPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-13 06:24:29 (GMT)
committerPeter Schneider-Kamp <nowonder@nowonder.de>2000-07-13 06:24:29 (GMT)
commit9a5086c598370be29bac12509736c47d4801a7fc (patch)
tree5d735af1e1c8fb519024bee880d4b7a89d79c8dd /Python/compile.c
parent11384c60f625f2f050cd51baa1333115fa95ab6c (diff)
downloadcpython-9a5086c598370be29bac12509736c47d4801a7fc.zip
cpython-9a5086c598370be29bac12509736c47d4801a7fc.tar.gz
cpython-9a5086c598370be29bac12509736c47d4801a7fc.tar.bz2
just fixing the indentation
Diffstat (limited to 'Python/compile.c')
-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);