From: Benjamin Peterson Date: Thu, 22 Oct 2009 02:26:47 +0000 (+0000) Subject: whitespace X-Git-Tag: v2.7a1~292 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3c67afa714d4edfbd572caf4c7c17c8890589ac6;p=thirdparty%2FPython%2Fcpython.git whitespace --- diff --git a/Objects/descrobject.c b/Objects/descrobject.c index 00cda3c46f8c..cbc43ac0965d 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 {