From 3c67afa714d4edfbd572caf4c7c17c8890589ac6 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Thu, 22 Oct 2009 02:26:47 +0000 Subject: whitespace --- Objects/descrobject.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Objects/descrobject.c b/Objects/descrobject.c index 00cda3c..cbc43ac 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 { -- cgit v0.12