diff options
author | Bénédikt Tran <10796600+picnixz@users.noreply.github.com> | 2024-09-29 15:22:39 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-29 15:22:39 (GMT) |
commit | 6d0d26eb8ca1e68ffad3364dea7edb1e4063ae07 (patch) | |
tree | 65bf8130d000b41f62009fc37d6e45aabcef1605 /Modules/_testlimitedcapi.c | |
parent | 4d8e7c40a0d37a84da1e0c130e7d585eb39438ad (diff) | |
download | cpython-6d0d26eb8ca1e68ffad3364dea7edb1e4063ae07.zip cpython-6d0d26eb8ca1e68ffad3364dea7edb1e4063ae07.tar.gz cpython-6d0d26eb8ca1e68ffad3364dea7edb1e4063ae07.tar.bz2 |
gh-111495: Add tests for `PyCodec_*` C API (#123343)
Diffstat (limited to 'Modules/_testlimitedcapi.c')
-rw-r--r-- | Modules/_testlimitedcapi.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/_testlimitedcapi.c b/Modules/_testlimitedcapi.c index e74cbfe..ba83a23 100644 --- a/Modules/_testlimitedcapi.c +++ b/Modules/_testlimitedcapi.c @@ -38,6 +38,9 @@ PyInit__testlimitedcapi(void) if (_PyTestLimitedCAPI_Init_Bytes(mod) < 0) { return NULL; } + if (_PyTestLimitedCAPI_Init_Codec(mod) < 0) { + return NULL; + } if (_PyTestLimitedCAPI_Init_Complex(mod) < 0) { return NULL; } |