summaryrefslogtreecommitdiffstats
path: root/Lib/test/setup_testcppext.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/setup_testcppext.py')
-rw-r--r--Lib/test/setup_testcppext.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/Lib/test/setup_testcppext.py b/Lib/test/setup_testcppext.py
index a288dbd..892e24a 100644
--- a/Lib/test/setup_testcppext.py
+++ b/Lib/test/setup_testcppext.py
@@ -19,8 +19,6 @@ if not MS_WINDOWS:
'-Werror',
# Warn on old-style cast (C cast) like: (PyObject*)op
'-Wold-style-cast',
- # Warn when using NULL rather than _Py_NULL in static inline functions
- '-Wzero-as-null-pointer-constant',
]
else:
# Don't pass any compiler flag to MSVC
@@ -39,6 +37,10 @@ def main():
name = '_testcpp11ext'
cppflags = [*CPPFLAGS, f'-std={std}']
+ if std == 'c++11':
+ # Warn when using NULL rather than _Py_NULL in static inline functions
+ cppflags.append('-Wzero-as-null-pointer-constant')
+
cpp_ext = Extension(
name,
sources=[SOURCE],