diff -r fceaa0dc715e Objects/cellobject.c --- a/Objects/cellobject.c Tue May 10 16:21:03 2016 -0600 +++ b/Objects/cellobject.c Thu May 12 18:50:59 2016 +0200 @@ -150,8 +150,8 @@ "cell", sizeof(PyCellObject), 0, - (destructor)cell_dealloc, /* tp_dealloc */ - 0, /* tp_print */ + (destructor)cell_dealloc, /* tp_dealloc */ + 0, /* tp_print */ 0, /* tp_getattr */ 0, /* tp_setattr */ 0, /* tp_reserved */ @@ -165,7 +165,7 @@ PyObject_GenericGetAttr, /* tp_getattro */ 0, /* tp_setattro */ 0, /* tp_as_buffer */ - Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */ + Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */ 0, /* tp_doc */ (traverseproc)cell_traverse, /* tp_traverse */ (inquiry)cell_clear, /* tp_clear */