File: _imaging.c
Function: pixel_access_getitem
Error: returning (PyObject*)NULL without setting an exception
2697 static PyObject *
2698 pixel_access_getitem(PixelAccessObject *self, PyObject *xy)
2699 {
2700     int x, y;
2701     if (_getxy(xy, &x, &y))
when considering range: -0x80000000 <= value <= -1
taking True path
2702         return NULL;
2703 
2704     return getpixel(self->image->image, self->image->access, x, y);
2705 }
returning (PyObject*)NULL without setting an exception
found 1 similar trace(s) to this