mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Add whitespace.
This commit is contained in:
parent
8501466c7f
commit
6d3e0186d6
1 changed files with 3 additions and 3 deletions
|
|
@ -46,9 +46,9 @@ PyCObject_FromVoidPtrAndDesc(void *cobj, void *desc,
|
||||||
self = PyObject_NEW(PyCObject, &PyCObject_Type);
|
self = PyObject_NEW(PyCObject, &PyCObject_Type);
|
||||||
if (self == NULL)
|
if (self == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
self->cobject=cobj;
|
self->cobject = cobj;
|
||||||
self->destructor=(destructor1)destr;
|
self->destructor = (destructor1)destr;
|
||||||
self->desc=desc;
|
self->desc = desc;
|
||||||
|
|
||||||
return (PyObject *)self;
|
return (PyObject *)self;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue