diff options
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 8a83e99..8f449a1 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -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 *); |