web-dev-qa-db-ja.com

PythonのCAPIを使用してオブジェクトを作成します

オブジェクトレイアウトを次のように定義しているとします。

typedef struct {
    PyObject_HEAD
    // Other stuff...
} pyfoo;

...そして私のタイプ定義:

static PyTypeObject pyfoo_T = {
    PyObject_HEAD_INIT(NULL)
    // ...

    pyfoo_new,
};

C拡張機能内のどこかにpyfooの新しいインスタンスを作成するにはどうすればよいですか?

44
detly

PyObject_New() を呼び出し、続いて PyObject_Init() を呼び出します。

EDIT:最良の方法は、Pythonのように、クラスオブジェクトを 呼び出し することです。自体:

/* Pass two arguments, a string and an int. */
PyObject *argList = Py_BuildValue("si", "hello", 42);

/* Call the class object. */
PyObject *obj = PyObject_CallObject((PyObject *) &pyfoo_T, argList);

/* Release the argument list. */
Py_DECREF(argList);
47