(self)
| 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): |
nothing calls this directly
no test coverage detected