Commit cc16d16a authored by Mark Dickinson's avatar Mark Dickinson

Silence gcc warning about possibly uninitialized variable 'converted_items'

parent 04fe7c01
......@@ -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;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment