]> granicus.if.org Git - python/commitdiff
whitespace
authorBenjamin Peterson <benjamin@python.org>
Thu, 22 Oct 2009 02:26:47 +0000 (02:26 +0000)
committerBenjamin Peterson <benjamin@python.org>
Thu, 22 Oct 2009 02:26:47 +0000 (02:26 +0000)
Objects/descrobject.c

index 00cda3c46f8cc591b1b5e5a363a23b372b022a76..cbc43ac0965de28d44d47ecc584369fa8bce79c7 100644 (file)
@@ -1282,7 +1282,7 @@ property_init(PyObject *self, PyObject *args, PyObject *kwds)
                PyObject *get_doc = PyObject_GetAttrString(get, "__doc__");
                if (get_doc != NULL) {
                        /* get_doc already INCREF'd by GetAttr */
-                       if (Py_TYPE(self)==&PyProperty_Type) {
+                       if (Py_TYPE(self) == &PyProperty_Type) {
                                Py_XDECREF(prop->prop_doc);
                                prop->prop_doc = get_doc;
                        } else {