summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2009-10-22 02:26:47 (GMT)
committerBenjamin Peterson <benjamin@python.org>2009-10-22 02:26:47 (GMT)
commit3c67afa714d4edfbd572caf4c7c17c8890589ac6 (patch)
tree76ccbb36d69cb9c3c8ea9f8746ff0b6ac2a404d7 /Objects
parent5ac6528b91382e218332d367c98f06a5ed8670ff (diff)
downloadcpython-3c67afa714d4edfbd572caf4c7c17c8890589ac6.zip
cpython-3c67afa714d4edfbd572caf4c7c17c8890589ac6.tar.gz
cpython-3c67afa714d4edfbd572caf4c7c17c8890589ac6.tar.bz2
whitespace
Diffstat (limited to 'Objects')
-rw-r--r--Objects/descrobject.c2
1 files changed, 1 insertions, 1 deletions
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 {