Remove trailing comma from 'why_code' enum, which was introduced by the

continue-inside-try patch. Partly fixes SF bug #132597.
This commit is contained in:
Thomas Wouters 2001-02-16 11:52:31 +00:00
parent 6e0e91af18
commit fc93b0a81a
1 changed files with 1 additions and 1 deletions

View 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 *);