#include <Python.h>

static PyMethodDef FtwMethods[] = {
	{NULL, NULL, 0, NULL}    /* <-- this sentinel value signals the end of the list
	                                of defined methods */
};

PyMODINIT_FUNC
initftw2()
{
	Py_InitModule("ftw2", FtwMethods);
}
