]> granicus.if.org Git - python/commitdiff
Andrew Kuchling <akuchlin@mems-exchange.org>:
authorFred Drake <fdrake@acm.org>
Mon, 3 Jul 2000 18:07:43 +0000 (18:07 +0000)
committerFred Drake <fdrake@acm.org>
Mon, 3 Jul 2000 18:07:43 +0000 (18:07 +0000)
Typo in string literal: execpt --> except

Modules/parsermodule.c

index 4bcf1726e9f0bb74d8a0b8c3cec400e48f9d72e8..7a99283a7f3260b06be0bd77a491896a74e3e7d0 100644 (file)
@@ -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));