We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e78592d commit 07451ddCopy full SHA for 07451dd
Objects/cellobject.c
@@ -150,8 +150,8 @@ PyTypeObject PyCell_Type = {
150
"cell",
151
sizeof(PyCellObject),
152
0,
153
- (destructor)cell_dealloc, /* tp_dealloc */
154
- 0, /* tp_print */
+ (destructor)cell_dealloc, /* tp_dealloc */
+ 0, /* tp_print */
155
0, /* tp_getattr */
156
0, /* tp_setattr */
157
0, /* tp_reserved */
@@ -165,7 +165,7 @@ PyTypeObject PyCell_Type = {
165
PyObject_GenericGetAttr, /* tp_getattro */
166
0, /* tp_setattro */
167
0, /* tp_as_buffer */
168
- Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
+ Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
169
0, /* tp_doc */
170
(traverseproc)cell_traverse, /* tp_traverse */
171
(inquiry)cell_clear, /* tp_clear */
0 commit comments