File: _imaging.c
Function: _draw_point
Error: returning (PyObject*)NULL without setting an exception
2459 static PyObject* 
2460 _draw_point(ImagingDrawObject* self, PyObject* args)
2461 {
2462     int x, y;
2463     int ink;
2464     if (!PyArg_ParseTuple(args, "(ii)i", &x, &y, &ink))
when PyArg_ParseTuple() succeeds
taking False path
2465 	return NULL;
2466 
2467     if (ImagingDrawPoint(self->image->image, x, y, &ink, self->blend) < 0)
when treating unknown struct ImagingObject * from _imaging.c:2467 as non-NULL
when considering range: -0x80000000 <= value <= -1
taking True path
2468 	return NULL;
2469 
2470     Py_INCREF(Py_None);
2471     return Py_None;
2472 }
returning (PyObject*)NULL without setting an exception