Sign in
android
/
platform
/
external
/
python
/
cpython3
/
e21754d7f83
/
.
/
Modules
/
_testcapi
/
codec.c
blob: d13f51e20331a161665b87904441ffd7fe99d27f [
file
] [
log
] [
blame
]
#include
"parts.h"
#include
"util.h"
static
PyMethodDef
test_methods
[]
=
{
{
NULL
},
};
int
_PyTestCapi_Init_Codec
(
PyObject
*
m
)
{
if
(
PyModule_AddFunctions
(
m
,
test_methods
)
<
0
){
return
-
1
;
}
return
0
;
}