diff options
author | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-11 07:43:46 (GMT) |
---|---|---|
committer | Anthony Baxter <anthonybaxter@gmail.com> | 2006-04-11 07:43:46 (GMT) |
commit | a863d334aa7c9d81daea4f6b9800e8245779dc44 (patch) | |
tree | a8b7372c51cdf6348dd9acf584a6f3281a3709e0 /Python/Python-ast.c | |
parent | a62862120ddc4636f8819b3f3003ea94c5db0d21 (diff) | |
download | cpython-a863d334aa7c9d81daea4f6b9800e8245779dc44.zip cpython-a863d334aa7c9d81daea4f6b9800e8245779dc44.tar.gz cpython-a863d334aa7c9d81daea4f6b9800e8245779dc44.tar.bz2 |
low-hanging fruit in Python/ - g++ still hates all the enum_kind declarations
in Python/Python-ast.c. Not sure what to do about those.
Diffstat (limited to 'Python/Python-ast.c')
-rw-r--r-- | Python/Python-ast.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c index 792f81d..b8c1925 100644 --- a/Python/Python-ast.c +++ b/Python/Python-ast.c @@ -2328,6 +2328,8 @@ ast2obj_stmt(void* _o) result = PyType_GenericNew(Continue_type, NULL, NULL); if (!result) goto failed; break; + default: + ; } value = ast2obj_int(o->lineno); if (!value) goto failed; |