(self)
| 122 | |
| 123 | @unittest.skipIf(support.MS_WINDOWS, "MSVC doesn't support /std:c99") |
| 124 | def test_build_c99(self): |
| 125 | # In public docs, we say C API is compatible with C11. However, |
| 126 | # in practice we do maintain C99 compatibility in public headers. |
| 127 | # Please ask the C API WG before adding a new C11-only feature. |
| 128 | self.check_build('_test_c99_cext', std='c99') |
| 129 | |
| 130 | |
| 131 | class TestInteralCAPI(BaseTests, unittest.TestCase): |
nothing calls this directly
no test coverage detected