mirror of https://github.com/python/cpython
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:
parent
6e0e91af18
commit
fc93b0a81a
|
@ -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 *);
|
||||
|
|
Loading…
Reference in New Issue