• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #include "parts.h"
2 #include "util.h"
3 
4 
5 static PyMethodDef test_methods[] = {
6     {NULL},
7 };
8 
9 int
_PyTestCapi_Init_Codec(PyObject * m)10 _PyTestCapi_Init_Codec(PyObject *m)
11 {
12     if (PyModule_AddFunctions(m, test_methods) < 0){
13         return -1;
14     }
15 
16     return 0;
17 }
18