]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Add whitespace.
authorJeremy Hylton <jeremy@alum.mit.edu>
Fri, 11 Jul 2003 17:02:39 +0000 (17:02 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Fri, 11 Jul 2003 17:02:39 +0000 (17:02 +0000)
Objects/cobject.c

index cdf445721aecedc05584e0001f00a47c11b9e5e1..eed906a56bbd9adea64f3ff7ebdd5ed9395393f7 100644 (file)
@@ -46,9 +46,9 @@ PyCObject_FromVoidPtrAndDesc(void *cobj, void *desc,
     self = PyObject_NEW(PyCObject, &PyCObject_Type);
     if (self == NULL)
         return NULL;
-    self->cobject=cobj;
-    self->destructor=(destructor1)destr;
-    self->desc=desc;
+    self->cobject = cobj;
+    self->destructor = (destructor1)destr;
+    self->desc = desc;
 
     return (PyObject *)self;
 }