0
0
mirror of https://github.com/python/cpython.git synced 2024-11-28 08:20:55 +01:00
cpython/Modules/_testcapi/file.c

18 lines
229 B
C
Raw Permalink Normal View History

#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;
}