#include //<-Put this FIRST! const static char msg[]="See that girl, watch that scene, digging the dancing queen"; static PyObject* dq(PyObject *self, PyObject *args) { PyObject *pcm=PyCObject_FromVoidPtr(msg,NULL); return pcm; //return Py_BuildValue("i",_fact(value)); } static PyMethodDef abbaMethods[]={ {"dq",dq,METH_VARARGS,"...Don't ask"}, {NULL,NULL,0,NULL} }; PyMODINIT_FUNC initabba(void) { (void) Py_InitModule3("abba",abbaMethods,"I'm... sorry."); }