mirror of
https://github.com/python/cpython.git
synced 2025-09-02 06:57:58 +00:00
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
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue