Message365399
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 |
|
Date |
User |
Action |
Args |
2020-03-31 16:46:56 | colesbury | set | recipients:
+ colesbury, gregory.p.smith, vstinner |
2020-03-31 16:46:56 | colesbury | set | messageid: <1585673216.28.0.773022717942.issue40120@roundup.psfhosted.org> |
2020-03-31 16:46:56 | colesbury | link | issue40120 messages |
2020-03-31 16:46:56 | colesbury | create | |
|