summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorThomas Wouters <thomas@python.org>2001-02-16 11:52:31 (GMT)
committerThomas Wouters <thomas@python.org>2001-02-16 11:52:31 (GMT)
commitfc93b0a81a93a6b0960a8a08a565cce88a0d8f61 (patch)
treec2e5ebe683d2e1e310152596ad2bc62d55c29fc1 /Python
parent6e0e91af18eafbff76bb7e64bef5e47f58e3ca2c (diff)
downloadcpython-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.
Diffstat (limited to 'Python')
-rw-r--r--Python/ceval.c2
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 *);