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 colesbury
Recipients colesbury, gregory.p.smith, vstinner
Date 2020-03-31.16:46:56
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1585673216.28.0.773022717942.issue40120@roundup.psfhosted.org>
In-reply-to
Content
It may be worth considering C-API extensions written in C++. Flexible array members are not part of the C++ standard, although GCC, Clang, and MSVC support them as an extension. GCC and Clang will issue warnings with `-Wpedantic` and MSVC will issue warnings with `/Wall`. Currently, C++ code that includes `<Python.h>` is warning-free in GCC (g++) even with `-Wpedantic`. That won't be true after this change, unless Py_LIMITED_API is defined.

Note that GCC also explicitly supports trailing one-element arrays (the current pattern) as an extension. https://gcc.gnu.org/onlinedocs/gcc/Zero-Length.html
History
Date User Action Args
2020-03-31 16:46:56colesburysetrecipients: + colesbury, gregory.p.smith, vstinner
2020-03-31 16:46:56colesburysetmessageid: <1585673216.28.0.773022717942.issue40120@roundup.psfhosted.org>
2020-03-31 16:46:56colesburylinkissue40120 messages
2020-03-31 16:46:56colesburycreate