mirror of
https://github.com/python/cpython.git
synced 2025-09-16 13:47:31 +00:00
Fix missing 'return NULL'
This commit is contained in:
parent
95bc980d9e
commit
90d47cb46c
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue