Fix memory leak in arraymodule.c and respond to a few comments by nnorwitz.

This commit is contained in:
Travis E. Oliphant 2007-08-20 07:16:33 +00:00
parent 30d1c51ac9
commit b803c517bf
3 changed files with 19 additions and 23 deletions

View file

@ -64,7 +64,6 @@ buffer_releasebuf(PyBufferObject *self, PyBuffer *view)
(*bp->bf_releasebuffer)(self->b_base, view);
}
}
/* XXX(nnorwitz): do we need to release view here? it leaks. */
}
static PyObject *