commit | 3c67afa714d4edfbd572caf4c7c17c8890589ac6 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Thu Oct 22 02:26:47 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Thu Oct 22 02:26:47 2009 +0000 |
tree | 76ccbb36d69cb9c3c8ea9f8746ff0b6ac2a404d7 | |
parent | 5ac6528b91382e218332d367c98f06a5ed8670ff [diff] [blame] |
whitespace
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 @@ 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 {