[Python-checkins] cpython (2.7): Make PyAST_obj2mod C89 compliant. (Follow-up commit from asdl_c.py.)

trent.nelson python-checkins at python.org
Thu Dec 13 08:22:40 CET 2012


http://hg.python.org/cpython/rev/a9341ce35abc
changeset:   80837:a9341ce35abc
branch:      2.7
user:        Trent Nelson <trent at trent.me>
date:        Thu Dec 13 07:22:16 2012 +0000
summary:
  Make PyAST_obj2mod C89 compliant.  (Follow-up commit from asdl_c.py.)

files:
  Python/Python-ast.c |  14 +++++++++++---
  1 files changed, 11 insertions(+), 3 deletions(-)


diff --git a/Python/Python-ast.c b/Python/Python-ast.c
--- a/Python/Python-ast.c
+++ b/Python/Python-ast.c
@@ -6749,10 +6749,18 @@
 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();

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list