diff options
author | Thomas Wouters <thomas@python.org> | 2001-02-16 11:52:31 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2001-02-16 11:52:31 (GMT) |
commit | fc93b0a81a93a6b0960a8a08a565cce88a0d8f61 (patch) | |
tree | c2e5ebe683d2e1e310152596ad2bc62d55c29fc1 | |
parent | 6e0e91af18eafbff76bb7e64bef5e47f58e3ca2c (diff) | |
download | cpython-fc93b0a81a93a6b0960a8a08a565cce88a0d8f61.zip cpython-fc93b0a81a93a6b0960a8a08a565cce88a0d8f61.tar.gz cpython-fc93b0a81a93a6b0960a8a08a565cce88a0d8f61.tar.bz2 |
Remove trailing comma from 'why_code' enum, which was introduced by the
continue-inside-try patch. Partly fixes SF bug #132597.
-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 *); |