Sign in
android
/
platform
/
external
/
python
/
cpython3
/
3265087c07c
/
.
/
Modules
/
_testcapi
/
numbers.c
blob: 6f7fa3fa7a41863dabcead7c1e081ff898187a93 [
file
] [
log
] [
blame
]
#include
"parts.h"
#include
"util.h"
static
PyMethodDef
test_methods
[]
=
{
{
NULL
},
};
int
_PyTestCapi_Init_Numbers
(
PyObject
*
mod
)
{
if
(
PyModule_AddFunctions
(
mod
,
test_methods
)
<
0
)
{
return
-
1
;
}
return
0
;
}