From 658ada69f4fe6ba337228d2cb71bb1cafe0d26e9 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Tue, 3 Oct 2006 13:02:36 +0000 Subject: updated for version 7.0-112 --- src/if_python.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/if_python.c') diff --git a/src/if_python.c b/src/if_python.c index e0fd34884..adcb52d2b 100644 --- a/src/if_python.c +++ b/src/if_python.c @@ -1463,7 +1463,7 @@ BufferDestructor(PyObject *self) if (this->buf && this->buf != INVALID_BUFFER_VALUE) this->buf->b_python_ref = NULL; - PyMem_DEL(self); + Py_DECREF(self); } static PyObject * @@ -1674,7 +1674,7 @@ RangeNew(buf_T *buf, int start, int end) bufr = (BufferObject *)BufferNew(buf); if (bufr == NULL) { - PyMem_DEL(self); + Py_DECREF(self); return NULL; } Py_INCREF(bufr); @@ -1690,7 +1690,7 @@ RangeNew(buf_T *buf, int start, int end) RangeDestructor(PyObject *self) { Py_DECREF(((RangeObject *)(self))->buf); - PyMem_DEL(self); + Py_DECREF(self); } static PyObject * @@ -1944,7 +1944,7 @@ WindowDestructor(PyObject *self) if (this->win && this->win != INVALID_WINDOW_VALUE) this->win->w_python_ref = NULL; - PyMem_DEL(self); + Py_DECREF(self); } static int -- cgit v1.2.1