diff options
author | Benjamin Peterson <benjamin@python.org> | 2016-05-13 06:12:21 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2016-05-13 06:12:21 (GMT) |
commit | 413a8e1b1b81d2de5283ca917eef4c8c7006cdb0 (patch) | |
tree | 6b83ce44abe1e908b084b0d155bbff011e6b8718 | |
parent | ec62130655fcf10739e1ade7fd492d29bb60c8dc (diff) | |
download | cpython-413a8e1b1b81d2de5283ca917eef4c8c7006cdb0.zip cpython-413a8e1b1b81d2de5283ca917eef4c8c7006cdb0.tar.gz cpython-413a8e1b1b81d2de5283ca917eef4c8c7006cdb0.tar.bz2 |
fix indentation of comments in cellobject.c (closes #27011)
-rw-r--r-- | Objects/cellobject.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Objects/cellobject.c b/Objects/cellobject.c index d0f6cda..c206684 100644 --- a/Objects/cellobject.c +++ b/Objects/cellobject.c @@ -116,8 +116,8 @@ PyTypeObject PyCell_Type = { "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 */ (cmpfunc)cell_compare, /* tp_compare */ @@ -131,7 +131,7 @@ PyTypeObject PyCell_Type = { 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 */ |