mirror of
https://github.com/python/cpython.git
synced 2025-08-22 09:45:06 +00:00
#17080: improve error message of float/complex when the wrong type is passed.
This commit is contained in:
parent
d0786a1a50
commit
a5b9599538
4 changed files with 11 additions and 6 deletions
|
@ -773,8 +773,9 @@ complex_subtype_from_string(PyTypeObject *type, PyObject *v)
|
|||
goto error;
|
||||
}
|
||||
else if (PyObject_AsCharBuffer(v, &s, &len)) {
|
||||
PyErr_SetString(PyExc_TypeError,
|
||||
"complex() argument must be a string or a number");
|
||||
PyErr_Format(PyExc_TypeError,
|
||||
"complex() argument must be a string or a number, not '%.200s'",
|
||||
Py_TYPE(v)->tp_name);
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
@ -953,8 +954,9 @@ complex_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
|
|||
nbi = i->ob_type->tp_as_number;
|
||||
if (nbr == NULL || nbr->nb_float == NULL ||
|
||||
((i != NULL) && (nbi == NULL || nbi->nb_float == NULL))) {
|
||||
PyErr_SetString(PyExc_TypeError,
|
||||
"complex() argument must be a string or a number");
|
||||
PyErr_Format(PyExc_TypeError,
|
||||
"complex() argument must be a string or a number, not '%.200s'",
|
||||
Py_TYPE(r)->tp_name);
|
||||
if (own_r) {
|
||||
Py_DECREF(r);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue