From: Benjamin Peterson Date: Thu, 22 Oct 2009 02:26:47 +0000 (+0000) Subject: whitespace X-Git-Tag: v2.7a1~292 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3c67afa714d4edfbd572caf4c7c17c8890589ac6;p=python whitespace --- diff --git a/Objects/descrobject.c b/Objects/descrobject.c index 00cda3c46f..cbc43ac096 100644 --- a/Objects/descrobject.c +++ b/Objects/descrobject.c @@ -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 {