summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2016-05-12 23:14:28 -0700
committerBenjamin Peterson <benjamin@python.org>2016-05-12 23:14:28 -0700
commit99740925ed5472e0c0c22ee01d0f2250d9287ff9 (patch)
tree90f3b6fe1f0772f2ab7fc1024958e9714d8da93e
parent228ab1ff6b5b02d8325a678b8afc140a153d4cf5 (diff)
parent07451ddd4f9db9cfdffdabca360d5873394d305c (diff)
downloadcpython-git-99740925ed5472e0c0c22ee01d0f2250d9287ff9.tar.gz
merge 3.5
-rw-r--r--Objects/cellobject.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Objects/cellobject.c b/Objects/cellobject.c
index eb5ad98e68..9f4eddb846 100644
--- a/Objects/cellobject.c
+++ b/Objects/cellobject.c
@@ -150,8 +150,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 */
0, /* tp_reserved */
@@ -165,7 +165,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 */