mirror of https://github.com/python/cpython.git
Remove the __unicode__ method from exceptions. Allows unicode() to be called
on exception classes. Would require introducing a tp_unicode slot to make it work otherwise. Fixes bug #1551432 and will be backported.
This commit is contained in:
parent
af57f6065f
commit
ca2ca79d23
|
@ -304,6 +304,15 @@ def g():
|
||||||
return -1
|
return -1
|
||||||
self.assertRaises(RuntimeError, g)
|
self.assertRaises(RuntimeError, g)
|
||||||
|
|
||||||
|
def testUnicodeStrUsage(self):
|
||||||
|
# Make sure both instances and classes have a str and unicode
|
||||||
|
# representation.
|
||||||
|
self.failUnless(str(Exception))
|
||||||
|
self.failUnless(unicode(Exception))
|
||||||
|
self.failUnless(str(Exception('a')))
|
||||||
|
self.failUnless(unicode(Exception(u'a')))
|
||||||
|
|
||||||
|
|
||||||
def test_main():
|
def test_main():
|
||||||
run_unittest(ExceptionTests)
|
run_unittest(ExceptionTests)
|
||||||
|
|
||||||
|
|
|
@ -15,8 +15,7 @@ def test_builtins_new_style(self):
|
||||||
self.failUnless(issubclass(Exception, object))
|
self.failUnless(issubclass(Exception, object))
|
||||||
|
|
||||||
def verify_instance_interface(self, ins):
|
def verify_instance_interface(self, ins):
|
||||||
for attr in ("args", "message", "__str__", "__unicode__", "__repr__",
|
for attr in ("args", "message", "__str__", "__repr__", "__getitem__"):
|
||||||
"__getitem__"):
|
|
||||||
self.failUnless(hasattr(ins, attr), "%s missing %s attribute" %
|
self.failUnless(hasattr(ins, attr), "%s missing %s attribute" %
|
||||||
(ins.__class__.__name__, attr))
|
(ins.__class__.__name__, attr))
|
||||||
|
|
||||||
|
|
|
@ -175,27 +175,10 @@ BaseException_setstate(PyObject *self, PyObject *state)
|
||||||
Py_RETURN_NONE;
|
Py_RETURN_NONE;
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef Py_USING_UNICODE
|
|
||||||
/* while this method generates fairly uninspired output, it a least
|
|
||||||
* guarantees that we can display exceptions that have unicode attributes
|
|
||||||
*/
|
|
||||||
static PyObject *
|
|
||||||
BaseException_unicode(PyBaseExceptionObject *self)
|
|
||||||
{
|
|
||||||
if (PyTuple_GET_SIZE(self->args) == 0)
|
|
||||||
return PyUnicode_FromUnicode(NULL, 0);
|
|
||||||
if (PyTuple_GET_SIZE(self->args) == 1)
|
|
||||||
return PyObject_Unicode(PyTuple_GET_ITEM(self->args, 0));
|
|
||||||
return PyObject_Unicode(self->args);
|
|
||||||
}
|
|
||||||
#endif /* Py_USING_UNICODE */
|
|
||||||
|
|
||||||
static PyMethodDef BaseException_methods[] = {
|
static PyMethodDef BaseException_methods[] = {
|
||||||
{"__reduce__", (PyCFunction)BaseException_reduce, METH_NOARGS },
|
{"__reduce__", (PyCFunction)BaseException_reduce, METH_NOARGS },
|
||||||
{"__setstate__", (PyCFunction)BaseException_setstate, METH_O },
|
{"__setstate__", (PyCFunction)BaseException_setstate, METH_O },
|
||||||
#ifdef Py_USING_UNICODE
|
|
||||||
{"__unicode__", (PyCFunction)BaseException_unicode, METH_NOARGS },
|
|
||||||
#endif
|
|
||||||
{NULL, NULL, 0, NULL},
|
{NULL, NULL, 0, NULL},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue