[issue20588] Code generated by asdl_c.py not C89-compliant

2014-02-10 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5b3bb4bda9cb by Benjamin Peterson in branch '3.3': don't put runtime values in array initializer for C89 compliance (closes #20588) http://hg.python.org/cpython/rev/5b3bb4bda9cb New changeset cdaf7b38bb2c by Benjamin Peterson in branch 'default': me

[issue20588] Code generated by asdl_c.py not C89-compliant

2014-02-10 Thread R. David Murray
Changes by R. David Murray : -- nosy: +benjamin.peterson ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https:

[issue20588] Code generated by asdl_c.py not C89-compliant

2014-02-10 Thread Jeffrey Armstrong
New submission from Jeffrey Armstrong: The code within Python/Python-ast.c does not currently conform to C89 standard. Within the function PyAST_obj2mod(), the array 'req_type' is initialized using runtime values, which is not allowed by the standard, causing building to fail on a C89 compile