From: Thomas Wouters Date: Fri, 16 Feb 2001 11:52:31 +0000 (+0000) Subject: Remove trailing comma from 'why_code' enum, which was introduced by the X-Git-Tag: v2.1b1~337 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fc93b0a81a93a6b0960a8a08a565cce88a0d8f61;p=python Remove trailing comma from 'why_code' enum, which was introduced by the continue-inside-try patch. Partly fixes SF bug #132597. --- diff --git a/Python/ceval.c b/Python/ceval.c index 8a83e99ead..8f449a1e08 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -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 *);