2009-02-26から1日間の記事一覧

[Python] [C] override stdout&stderr output from C

#include <Python.h> typedef struct { PyObject_HEAD /* Type-specific fields go here. */ } MyStdout; static PyObject *MyStdout_write(MyStdout* self, PyObject *args) { char *data = PyString_AsString(args); if (data){ printf("%s", data); } Py_RETURN_NON</python.h>…