Silence gcc warning about possibly uninitialized variable 'converted_items'

This commit is contained in:
Mark Dickinson 2009-10-26 07:58:04 +00:00
parent 04fe7c01a8
commit cc16d16add

View File

@ -1850,6 +1850,8 @@ array_reconstructor(PyObject *self, PyObject *args)
/* Impossible, but needed to shut up GCC about the unhandled
* enumeration value.
*/
default:
PyErr_BadArgument();
return NULL;
}