blob: d13f51e20331a161665b87904441ffd7fe99d27f (
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_Codec(PyObject *m)
{
if (PyModule_AddFunctions(m, test_methods) < 0){
return -1;
}
return 0;
}
|