Kaydet (Commit) fc93b0a8 authored tarafından Thomas Wouters's avatar Thomas Wouters

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

continue-inside-try patch. Partly fixes SF bug #132597.
üst 6e0e91af
......@@ -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 *);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment