Kaydet (Commit) 6e6a63f0 authored tarafından Tim Peters's avatar Tim Peters

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.
üst e82f75aa
...@@ -470,7 +470,7 @@ enum why_code { ...@@ -470,7 +470,7 @@ enum why_code {
WHY_RETURN, /* 'return' statement */ WHY_RETURN, /* 'return' statement */
WHY_BREAK, /* 'break' statement */ WHY_BREAK, /* 'break' statement */
WHY_CONTINUE, /* 'continue' statement */ WHY_CONTINUE, /* 'continue' statement */
WHY_YIELD, /* 'yield' operator */ WHY_YIELD /* 'yield' operator */
}; };
static enum why_code do_raise(PyObject *, PyObject *, PyObject *); static enum why_code do_raise(PyObject *, PyObject *, PyObject *);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment