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 michael-o
Recipients gregory.p.smith, michael-o
Date 2019-04-26.11:29:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1556278148.43.0.578360230422.issue36734@roundup.psfhosted.org>
In-reply-to
Content
> /opt/aCC/bin/aCC -Ae  -O      -I./Include/internal  -I. -I./Include -I/opt/ports/include -I/opt/ports/include  -DPy_BUILD_CORE_BUILTIN  -c ./Modules/faulthandler.c -o Modules/faulthandler.o
> "./Modules/faulthandler.c", line 1373: error #2029: expected an expression
>           stack_t current_stack = {};

The fix is trivial:
> stack_t current_stack = {0};

Can also provide a PR for that.
History
Date User Action Args
2019-04-26 11:29:08michael-osetrecipients: + michael-o, gregory.p.smith
2019-04-26 11:29:08michael-osetmessageid: <1556278148.43.0.578360230422.issue36734@roundup.psfhosted.org>
2019-04-26 11:29:08michael-olinkissue36734 messages
2019-04-26 11:29:08michael-ocreate