diff options
author | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-13 06:24:29 (GMT) |
---|---|---|
committer | Peter Schneider-Kamp <nowonder@nowonder.de> | 2000-07-13 06:24:29 (GMT) |
commit | 9a5086c598370be29bac12509736c47d4801a7fc (patch) | |
tree | 5d735af1e1c8fb519024bee880d4b7a89d79c8dd /Python | |
parent | 11384c60f625f2f050cd51baa1333115fa95ab6c (diff) | |
download | cpython-9a5086c598370be29bac12509736c47d4801a7fc.zip cpython-9a5086c598370be29bac12509736c47d4801a7fc.tar.gz cpython-9a5086c598370be29bac12509736c47d4801a7fc.tar.bz2 |
just fixing the indentation
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 2 |
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); |