]> granicus.if.org Git - python/commitdiff
Remove trailing comma from 'why_code' enum, which was introduced by the
authorThomas Wouters <thomas@python.org>
Fri, 16 Feb 2001 11:52:31 +0000 (11:52 +0000)
committerThomas Wouters <thomas@python.org>
Fri, 16 Feb 2001 11:52:31 +0000 (11:52 +0000)
continue-inside-try patch. Partly fixes SF bug #132597.

Python/ceval.c

index 8a83e99eadae931b5d759e3a0a5fd2aad272f6b7..8f449a1e08fc2f96dbef7497caeb2350b646c1c9 100644 (file)
@@ -323,7 +323,7 @@ enum why_code {
                WHY_RERAISE,    /* Exception re-raised by 'finally' */
                WHY_RETURN,     /* 'return' statement */
                WHY_BREAK,      /* 'break' statement */
-               WHY_CONTINUE,   /* 'continue' statement */
+               WHY_CONTINUE    /* 'continue' statement */
 };
 
 static enum why_code do_raise(PyObject *, PyObject *, PyObject *);