Remove trailing comma from 'why_code' enum, which was introduced by the
continue-inside-try patch. Partly fixes SF bug #132597.
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 @@
 		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 *);