static PyObject* _outline_close(OutlineObject* self, PyObject* args) { if (!PyArg_ParseTuple(args, ":close")) return NULL; ImagingOutlineClose(self->outline); Py_RETURN_NONE; }
static PyObject* _outline_close(OutlineObject* self, PyObject* args) { if (!PyArg_ParseTuple(args, ":close")) return NULL; ImagingOutlineClose(self->outline); Py_INCREF(Py_None); return Py_None; }