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