This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Jeffrey.Armstrong
Recipients Jeffrey.Armstrong
Date 2014-02-11.01:33:09
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1392082392.14.0.904741154725.issue20588@psf.upfronthosting.co.za>
In-reply-to
Content
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 compiler.

This code is automatically generated by asdl_c.py.  I've attached a patch which corrects the problem.  Python/Python-ast.c will need to be regenerated if this patch is accepted.
History
Date User Action Args
2014-02-11 01:33:12Jeffrey.Armstrongsetrecipients: + Jeffrey.Armstrong
2014-02-11 01:33:12Jeffrey.Armstrongsetmessageid: <1392082392.14.0.904741154725.issue20588@psf.upfronthosting.co.za>
2014-02-11 01:33:11Jeffrey.Armstronglinkissue20588 messages
2014-02-11 01:33:10Jeffrey.Armstrongcreate