gh-116417: Move limited C API unicode.c tests to _testlimitedcapi (#116993)

Split unicode.c tests of _testcapi into two parts: limited C API
tests in _testlimitedcapi and non-limited C API tests in _testcapi.

Update test_codecs.
This commit is contained in:
Victor Stinner 2024-03-19 13:30:39 +01:00 committed by GitHub
parent 1312094b39
commit a557478987
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 2082 additions and 2032 deletions

View file

@ -53,6 +53,9 @@ PyInit__testlimitedcapi(void)
if (_PyTestLimitedCAPI_Init_Sys(mod) < 0) {
return NULL;
}
if (_PyTestLimitedCAPI_Init_Unicode(mod) < 0) {
return NULL;
}
if (_PyTestLimitedCAPI_Init_VectorcallLimited(mod) < 0) {
return NULL;
}