diff options
Diffstat (limited to 'Python/ceval.c')
-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 b0371aa447..b707734349 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -470,7 +470,7 @@ enum why_code { WHY_RETURN, /* 'return' statement */ WHY_BREAK, /* 'break' statement */ WHY_CONTINUE, /* 'continue' statement */ - WHY_YIELD, /* 'yield' operator */ + WHY_YIELD /* 'yield' operator */ }; static enum why_code do_raise(PyObject *, PyObject *, PyObject *); |