bpo-31462: Remove trailing whitespaces. (#3564)

This commit is contained in:
Serhiy Storchaka 2017-09-14 09:38:36 +03:00 committed by GitHub
parent 312ffead1e
commit 13ad3b7a82
21 changed files with 62 additions and 62 deletions

View file

@ -151,7 +151,7 @@ cell_set_contents(PyCellObject *op, PyObject *obj)
}
static PyGetSetDef cell_getsetlist[] = {
{"cell_contents", (getter)cell_get_contents,
{"cell_contents", (getter)cell_get_contents,
(setter)cell_set_contents, NULL},
{NULL} /* sentinel */
};