From 6e6a63f01cd5dd31987a3f4f5ce29e33bea67e1b Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Thu, 18 Oct 2001 20:49:35 +0000 Subject: SF Patch (but with no patch) 472555 Remove trailing common in enumeration. Some AIX compiler didn't like the trailing comma at the end of the why_code enum decl. --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index b0371aa..b707734 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 *); -- cgit v0.12