[Python-checkins] cpython (merge 3.5 -> default): merge 3.5

benjamin.peterson python-checkins at python.org
Fri May 13 02:14:37 EDT 2016


https://hg.python.org/cpython/rev/b72c588e6d33
changeset:   101311:b72c588e6d33
parent:      101308:fceaa0dc715e
parent:      101309:2c6b6667a26e
user:        Benjamin Peterson <benjamin at python.org>
date:        Thu May 12 23:14:28 2016 -0700
summary:
  merge 3.5

files:
  Objects/cellobject.c |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/Objects/cellobject.c b/Objects/cellobject.c
--- a/Objects/cellobject.c
+++ b/Objects/cellobject.c
@@ -150,8 +150,8 @@
     "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 @@
     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 */

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list