[Python-checkins] r75589 - python/trunk/Objects/descrobject.c

benjamin.peterson python-checkins at python.org
Thu Oct 22 04:26:48 CEST 2009


Author: benjamin.peterson
Date: Thu Oct 22 04:26:47 2009
New Revision: 75589

Log:
whitespace

Modified:
   python/trunk/Objects/descrobject.c

Modified: python/trunk/Objects/descrobject.c
==============================================================================
--- python/trunk/Objects/descrobject.c	(original)
+++ python/trunk/Objects/descrobject.c	Thu Oct 22 04:26:47 2009
@@ -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 {


More information about the Python-checkins mailing list