Skip to content

Commit 07451dd

Browse files
committed
fix indentation of comments in cellobject.c (closes #27011)
1 parent e78592d commit 07451dd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: Objects/cellobject.c

+3-3
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ PyTypeObject PyCell_Type = {
150150
"cell",
151151
sizeof(PyCellObject),
152152
0,
153-
(destructor)cell_dealloc, /* tp_dealloc */
154-
0, /* tp_print */
153+
(destructor)cell_dealloc, /* tp_dealloc */
154+
0, /* tp_print */
155155
0, /* tp_getattr */
156156
0, /* tp_setattr */
157157
0, /* tp_reserved */
@@ -165,7 +165,7 @@ PyTypeObject PyCell_Type = {
165165
PyObject_GenericGetAttr, /* tp_getattro */
166166
0, /* tp_setattro */
167167
0, /* tp_as_buffer */
168-
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC,/* tp_flags */
168+
Py_TPFLAGS_DEFAULT | Py_TPFLAGS_HAVE_GC, /* tp_flags */
169169
0, /* tp_doc */
170170
(traverseproc)cell_traverse, /* tp_traverse */
171171
(inquiry)cell_clear, /* tp_clear */

0 commit comments

Comments
 (0)