mirror of
https://github.com/python-pillow/Pillow.git
synced 2024-11-10 19:56:47 +03:00
Merge pull request #2548 from hugovk/rm-unused-_new_array
Remove unused function
This commit is contained in:
commit
ef28cdcf65
13
_imaging.c
13
_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},
|
||||
|
|
Loading…
Reference in New Issue
Block a user