Re: problem in compiling the module in VC2010
Am 20.07.2011 17:33, schrieb llwa...@gmail.com: > Hi all, > I am compiling the example with MCVS2010 VC 2010 is not officially supported. Christian -- http://mail.python.org/mailman/listinfo/python-list
problem in compiling the module in VC2010
Hi all, I am compiling the example with MCVS2010 #include "Python.h" static PyObject * ex_foo(PyObject *self, PyObject *args) { printf("Hello, world\n"); Py_INCREF(Py_None); return Py_None; } static PyMethodDef example_methods[] = { {"foo", ex_foo, METH_VARARGS, "foo() doc stri