diff options
Diffstat (limited to 'Objects/complexobject.c')
-rw-r--r-- | Objects/complexobject.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Objects/complexobject.c b/Objects/complexobject.c index 4bcf2cefd8..2c886c7a76 100644 --- a/Objects/complexobject.c +++ b/Objects/complexobject.c @@ -914,10 +914,10 @@ complex_subtype_from_string(PyTypeObject *type, PyObject *v) if (s_buffer == NULL) { return NULL; } + assert(PyUnicode_IS_ASCII(s_buffer)); + /* Simply get a pointer to existing ASCII characters. */ s = PyUnicode_AsUTF8AndSize(s_buffer, &len); - if (s == NULL) { - goto exit; - } + assert(s != NULL); } else { PyErr_Format(PyExc_TypeError, @@ -928,7 +928,6 @@ complex_subtype_from_string(PyTypeObject *type, PyObject *v) result = _Py_string_to_number_with_underscores(s, len, "complex", v, type, complex_from_string_inner); - exit: Py_DECREF(s_buffer); return result; } |