summaryrefslogtreecommitdiffstats
path: root/Python/errors.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1992-02-05 11:16:47 (GMT)
committerGuido van Rossum <guido@python.org>1992-02-05 11:16:47 (GMT)
commitc4884007f967ebab9a3fc54a6fe81ece9839efa0 (patch)
treec514b1d4deb7987b198ecf8e0cd1d78576ad3778 /Python/errors.c
parent4ddf8cc408171a685507126a669843a16cfb0f2d (diff)
downloadcpython-c4884007f967ebab9a3fc54a6fe81ece9839efa0.zip
cpython-c4884007f967ebab9a3fc54a6fe81ece9839efa0.tar.gz
cpython-c4884007f967ebab9a3fc54a6fe81ece9839efa0.tar.bz2
EOF in source is a SyntaxError, not an EOFError.
Diffstat (limited to 'Python/errors.c')
-rw-r--r--Python/errors.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/errors.c b/Python/errors.c
index de70f22..5a46d4e 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -192,7 +192,7 @@ err_input(err)
err_nomem();
break;
case E_EOF:
- err_setstr(EOFError, "unexpected EOF while parsing");
+ err_setstr(SyntaxError, "unexpected EOF while parsing");
break;
default:
err_setstr(SystemError, "unknown parsing error");