diff options
Diffstat (limited to 'Objects/cellobject.c')
-rw-r--r-- | Objects/cellobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/cellobject.c b/Objects/cellobject.c index 3f6389f..8f16f07 100644 --- a/Objects/cellobject.c +++ b/Objects/cellobject.c @@ -151,7 +151,7 @@ cell_set_contents(PyCellObject *op, PyObject *obj) } static PyGetSetDef cell_getsetlist[] = { - {"cell_contents", (getter)cell_get_contents, + {"cell_contents", (getter)cell_get_contents, (setter)cell_set_contents, NULL}, {NULL} /* sentinel */ }; |