summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorTrent Nelson <trent@trent.me>2012-12-13 07:22:16 +0000
committerTrent Nelson <trent@trent.me>2012-12-13 07:22:16 +0000
commit86c80a9f5f8f4c509a5b474477798d8c9886899d (patch)
tree6386b2d4d850a8e02015f325424152d4a505dbde /Python
parent9673946184108c1d1b87c95bd527ce6194424956 (diff)
downloadcpython-86c80a9f5f8f4c509a5b474477798d8c9886899d.tar.gz
Make PyAST_obj2mod C89 compliant. (Follow-up commit from asdl_c.py.)
Diffstat (limited to 'Python')
-rw-r--r--Python/Python-ast.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/Python/Python-ast.c b/Python/Python-ast.c
index dcfde3c349..6cf99ec5ad 100644
--- a/Python/Python-ast.c
+++ b/Python/Python-ast.c
@@ -6749,10 +6749,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();