summaryrefslogtreecommitdiffstats
path: root/Modules/_testcapi/numbers.c
blob: 6f7fa3fa7a41863dabcead7c1e081ff898187a93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#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;
}