Ubuntu下编写python c++ 扩展
Ubuntu下python 的c++扩展编写 比 php简单很多phpize 也不是很好用的一个东西编写一个 python mod hello world123456789101112131415161718192021222324#include "Python.h"PyObject* hello(PyObject* self, PyObject* args){ const char * str; if (! PyArg_ParseTuple(a...