#include "parts.h" #include "util.h" static PyObject * list_get_size(PyObject *Py_UNUSED(module), PyObject *obj) { … } static PyObject * list_get_item(PyObject *Py_UNUSED(module), PyObject *args) { … } static PyObject * list_set_item(PyObject *Py_UNUSED(module), PyObject *args) { … } static PyObject * list_clear(PyObject* Py_UNUSED(module), PyObject *obj) { … } static PyObject * list_extend(PyObject* Py_UNUSED(module), PyObject *args) { … } static PyMethodDef test_methods[] = …; int _PyTestCapi_Init_List(PyObject *m) { … }