diff --git a/_imaging.c b/_imaging.c index af15cae91..f6e3eed16 100644 --- a/_imaging.c +++ b/_imaging.c @@ -631,18 +631,6 @@ _new(PyObject* self, PyObject* args) return PyImagingNew(ImagingNew(mode, xsize, ysize)); } -static PyObject* -_new_array(PyObject* self, PyObject* args) -{ - char* mode; - int xsize, ysize; - - if (!PyArg_ParseTuple(args, "s(ii)", &mode, &xsize, &ysize)) - return NULL; - - return PyImagingNew(ImagingNewArray(mode, xsize, ysize)); -} - static PyObject* _new_block(PyObject* self, PyObject* args) { @@ -3027,7 +3015,6 @@ static struct PyMethodDef methods[] = { #endif /* Misc. */ - {"new_array", (PyCFunction)_new_array, 1}, {"new_block", (PyCFunction)_new_block, 1}, {"save_ppm", (PyCFunction)_save_ppm, 1},