Sign in
chromium
/
external
/
github.com
/
python
/
cpython
/
520cf2170ea08730e142d591e311b7ab8a6afe63
/
.
/
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
;
}