Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fc93b0a

Browse files
committed
Remove trailing comma from 'why_code' enum, which was introduced by the
continue-inside-try patch. Partly fixes SF bug #132597.
1 parent 6e0e91a commit fc93b0a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ enum why_code {
323323
WHY_RERAISE, /* Exception re-raised by 'finally' */
324324
WHY_RETURN, /* 'return' statement */
325325
WHY_BREAK, /* 'break' statement */
326-
WHY_CONTINUE, /* 'continue' statement */
326+
WHY_CONTINUE /* 'continue' statement */
327327
};
328328

329329
static enum why_code do_raise(PyObject *, PyObject *, PyObject *);

0 commit comments

Comments
 (0)