MCPcopy Index your code
hub / github.com/python/cpython / test_build_cpp03

Method test_build_cpp03

Lib/test/test_cppext/__init__.py:109–113  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

107 self.check_build('_testcppext_limited', limited=True)
108
109 def test_build_cpp03(self):
110 # In public docs, we say C API is compatible with C++11. However,
111 # in practice we do maintain C++03 compatibility in public headers.
112 # Please ask the C API WG before adding a new C++11-only feature.
113 self.check_build('_testcpp03ext', std='c++03')
114
115 @unittest.skipIf(support.MS_WINDOWS, "MSVC doesn't support /std:c++11")
116 def test_build_cpp11(self):

Callers

nothing calls this directly

Calls 1

check_buildMethod · 0.45

Tested by

no test coverage detected