From: Tim Peters Date: Thu, 18 Oct 2001 20:49:35 +0000 (+0000) Subject: SF Patch (but with no patch) 472555 Remove trailing common in enumeration. X-Git-Tag: v2.2.1c1~1173 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6e6a63f01cd5dd31987a3f4f5ce29e33bea67e1b;p=thirdparty%2FPython%2Fcpython.git 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. --- diff --git a/Python/ceval.c b/Python/ceval.c index b0371aa44718..b70773434965 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 *);