From: Fred Drake Date: Mon, 3 Jul 2000 18:07:43 +0000 (+0000) Subject: Andrew Kuchling : X-Git-Tag: v2.0b1~1106 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22269b5976d59c1a6ef2ecf9beb4480ab03db323;p=thirdparty%2FPython%2Fcpython.git Andrew Kuchling : Typo in string literal: execpt --> except --- diff --git a/Modules/parsermodule.c b/Modules/parsermodule.c index 4bcf1726e9f0..7a99283a7f32 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));