Fix missing 'return NULL'

This commit is contained in:
Mark Dickinson 2009-04-24 13:14:07 +00:00
parent 95bc980d9e
commit 90d47cb46c
1 changed files with 1 additions and 1 deletions

View File

@ -1027,7 +1027,7 @@ complex_subtype_from_string(PyTypeObject *type, PyObject *v)
overflow:
PyErr_SetString(PyExc_OverflowError,
"complex() arg overflow");
return NULL;
}
static PyObject *