Fix missing 'return NULL'
This commit is contained in:
parent
95bc980d9e
commit
90d47cb46c
|
@ -1027,7 +1027,7 @@ complex_subtype_from_string(PyTypeObject *type, PyObject *v)
|
||||||
overflow:
|
overflow:
|
||||||
PyErr_SetString(PyExc_OverflowError,
|
PyErr_SetString(PyExc_OverflowError,
|
||||||
"complex() arg overflow");
|
"complex() arg overflow");
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static PyObject *
|
static PyObject *
|
||||||
|
|
Loading…
Reference in New Issue