summaryrefslogtreecommitdiffstats
path: root/Objects/cellobject.c
diff options
context:
space:
mode:
Diffstat (limited to 'Objects/cellobject.c')
-rw-r--r--Objects/cellobject.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Objects/cellobject.c b/Objects/cellobject.c
index 1a19c6a..6794ff3 100644
--- a/Objects/cellobject.c
+++ b/Objects/cellobject.c
@@ -87,8 +87,7 @@ static PyGetSetDef cell_getsetlist[] = {
};
PyTypeObject PyCell_Type = {
- PyObject_HEAD_INIT(&PyType_Type)
- 0,
+ PyVarObject_HEAD_INIT(&PyType_Type, 0)
"cell",
sizeof(PyCellObject),
0,