diff options
author | Trent Nelson <trent@trent.me> | 2012-12-13 07:13:18 (GMT) |
---|---|---|
committer | Trent Nelson <trent@trent.me> | 2012-12-13 07:13:18 (GMT) |
commit | 05c197c75e05954c9486eac80166adaedbc36657 (patch) | |
tree | 664bb8f6e7fe1461d262db4142dae77aec778e7d | |
parent | 15daa35d32c930aca2038586aae2d821d711b0bb (diff) | |
download | cpython-05c197c75e05954c9486eac80166adaedbc36657.zip cpython-05c197c75e05954c9486eac80166adaedbc36657.tar.gz cpython-05c197c75e05954c9486eac80166adaedbc36657.tar.bz2 |
Make PyAST_obj2mod C89 compliant.
-rwxr-xr-x | Parser/asdl_c.py | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py index b6448c9..666c48d 100755 --- a/Parser/asdl_c.py +++ b/Parser/asdl_c.py @@ -1117,10 +1117,18 @@ PyObject* PyAST_mod2obj(mod_ty t) mod_ty PyAST_obj2mod(PyObject* ast, PyArena* arena, int mode) { mod_ty res; - PyObject *req_type[] = {(PyObject*)Module_type, (PyObject*)Expression_type, - (PyObject*)Interactive_type}; - char *req_name[] = {"Module", "Expression", "Interactive"}; + PyObject *req_type[3]; + char *req_name[3]; int isinstance; + + req_type[0] = (PyObject*)Module_type; + req_type[1] = (PyObject*)Expression_type; + req_type[2] = (PyObject*)Interactive_type; + + req_name[0] = "Module"; + req_name[1] = "Expression"; + req_name[2] = "Interactive"; + assert(0 <= mode && mode <= 2); init_types(); |