Spaces:
Runtime error
Runtime error
| /* Cell object interface */ | |
| extern "C" { | |
| typedef struct { | |
| PyObject_HEAD | |
| /* Content of the cell or NULL when empty */ | |
| PyObject *ob_ref; | |
| } PyCellObject; | |
| PyAPI_DATA(PyTypeObject) PyCell_Type; | |
| PyAPI_FUNC(PyObject *) PyCell_New(PyObject *); | |
| PyAPI_FUNC(PyObject *) PyCell_Get(PyObject *); | |
| PyAPI_FUNC(int) PyCell_Set(PyObject *, PyObject *); | |
| } | |