mirror of
https://github.com/python/cpython.git
synced 2025-08-12 04:49:01 +00:00
Merged revisions 78746 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r78746 | benjamin.peterson | 2010-03-06 18:00:37 -0600 (Sat, 06 Mar 2010) | 1 line more specific exception for wrong kind of raise #8082 ........
This commit is contained in:
parent
b1e22e3def
commit
264a01091a
1 changed files with 3 additions and 2 deletions
|
@ -3260,7 +3260,8 @@ do_raise(PyObject *type, PyObject *value, PyObject *tb)
|
||||||
/* Not something you can raise. You get an exception
|
/* Not something you can raise. You get an exception
|
||||||
anyway, just not what you specified :-) */
|
anyway, just not what you specified :-) */
|
||||||
PyErr_Format(PyExc_TypeError,
|
PyErr_Format(PyExc_TypeError,
|
||||||
"exceptions must be classes or instances, not %s",
|
"exceptions must be old-style classes or "
|
||||||
|
"derived from BaseException, not %s",
|
||||||
type->ob_type->tp_name);
|
type->ob_type->tp_name);
|
||||||
goto raise_error;
|
goto raise_error;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue