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.
This commit is contained in:
Tim Peters 2001-10-18 20:49:35 +00:00
parent e82f75aa20
commit 6e6a63f01c

View File

@ -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 *);