summaryrefslogtreecommitdiffstats
path: root/Objects/cellobject.c
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2017-09-14 06:38:36 (GMT)
committerGitHub <noreply@github.com>2017-09-14 06:38:36 (GMT)
commit13ad3b7a82bf56d803fbe48ee5df6c4b08986c78 (patch)
tree5704d2735779297fbba0e99ae333ff1a4f928513 /Objects/cellobject.c
parent312ffead1eb272535e021e248b5d74ab04b2e72e (diff)
downloadcpython-13ad3b7a82bf56d803fbe48ee5df6c4b08986c78.zip
cpython-13ad3b7a82bf56d803fbe48ee5df6c4b08986c78.tar.gz
cpython-13ad3b7a82bf56d803fbe48ee5df6c4b08986c78.tar.bz2
bpo-31462: Remove trailing whitespaces. (#3564)
Diffstat (limited to 'Objects/cellobject.c')
-rw-r--r--Objects/cellobject.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/cellobject.c b/Objects/cellobject.c
index 3f6389f..8f16f07 100644
--- a/Objects/cellobject.c
+++ b/Objects/cellobject.c
@@ -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 */
};