diff options
author | Fred Drake <fdrake@acm.org> | 2000-07-03 18:07:43 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 2000-07-03 18:07:43 (GMT) |
commit | 22269b5976d59c1a6ef2ecf9beb4480ab03db323 (patch) | |
tree | d3939db5ec85823c3558083f95779dc9a067f573 /Modules/parsermodule.c | |
parent | 17647f520192e18330401c4e242af98603dc3045 (diff) | |
download | cpython-22269b5976d59c1a6ef2ecf9beb4480ab03db323.zip cpython-22269b5976d59c1a6ef2ecf9beb4480ab03db323.tar.gz cpython-22269b5976d59c1a6ef2ecf9beb4480ab03db323.tar.bz2 |
Andrew Kuchling <akuchlin@mems-exchange.org>:
Typo in string literal: execpt --> except
Diffstat (limited to 'Modules/parsermodule.c')
-rw-r--r-- | Modules/parsermodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 4bcf172..7a99283 100644 --- a/Modules/parsermodule.c +++ b/Modules/parsermodule.c @@ -1651,7 +1651,7 @@ validate_try(tree) && validate_colon(CHILD(tree, nch - 2)) && validate_suite(CHILD(tree, nch - 1))); else { - const char* name = "execpt"; + const char* name = "except"; char buffer[60]; if (TYPE(CHILD(tree, nch - 3)) != except_clause) name = STR(CHILD(tree, nch - 3)); |