mirror of
https://github.com/python/cpython.git
synced 2025-07-31 07:04:42 +00:00
ceval.c/do_raise(): Tighten the test to disallow raising an instance of
a str subclass. test_descr.py/string_exceptions(): New sub-test. For 2.3 only. Guido doesn't want this backported.
This commit is contained in:
parent
16af557ae9
commit
afb2c80b29
2 changed files with 30 additions and 1 deletions
|
@ -2743,7 +2743,10 @@ do_raise(PyObject *type, PyObject *value, PyObject *tb)
|
|||
Py_DECREF(tmp);
|
||||
}
|
||||
|
||||
if (PyString_Check(type))
|
||||
if (PyString_CheckExact(type))
|
||||
/* Raising builtin string is deprecated but still allowed --
|
||||
* do nothing. Raising an instance of a new-style str
|
||||
* subclass is right out. */
|
||||
;
|
||||
|
||||
else if (PyClass_Check(type))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue