diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-10-18 20:49:35 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-10-18 20:49:35 (GMT) |
commit | 6e6a63f01cd5dd31987a3f4f5ce29e33bea67e1b (patch) | |
tree | c1901a9ec96916dc2036e86cdae23aec9ad39731 /Python | |
parent | e82f75aa20f7d3259575e4d0d0e3bcb1c8a7fec3 (diff) | |
download | cpython-6e6a63f01cd5dd31987a3f4f5ce29e33bea67e1b.zip cpython-6e6a63f01cd5dd31987a3f4f5ce29e33bea67e1b.tar.gz cpython-6e6a63f01cd5dd31987a3f4f5ce29e33bea67e1b.tar.bz2 |
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.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 *); |