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