I recommend that you also replace the NULL after the METH_VARARGS with a valid documentations string such as:
static PyMethodDef modglMethods[] =
{
{ (char *)"glVertex4f", _wrap_glVertex4f, METH_VARARGS, "My
Doc String"},
{ NULL, NULL, 0, NULL }
};
Sam Schulenburg
--
http://mail.python.org/mailman/listinfo/python-list
