7

以下来自 django 源代码 ( Django-1.41/django/utils/encoding.py);

try:
    s = unicode(str(s), encoding, errors)
except UnicodeEncodeError:
    if not isinstance(s, Exception):
        raise

    # If we get to here, the caller has passed in an Exception
    # subclass populated with non-ASCII data without special
    # handling to display as a string. We need to handle this
    # without raising a further exception. We do an
    # approximation to what the Exception's standard str()
    # output should be.
    s = u' '.join([force_unicode(arg, encoding, strings_only,
        errors) for arg in s])

我的问题是:在哪种情况下会s出现异常?
当 s 是 Exception 的一个实例,并且 s 既没有 str 也没有 repr 属性。比这种情况发生。这是正确的吗?

4

2 回答 2

3

s如果有人使用 Exception 的子类调用force_unicode函数并且消息包含 unicode 字符,则将是一个异常。

s = Exception("\xd0\x91".decode("utf-8"))
# this will now throw a UnicodeEncodeError
unicode(str(s), 'utf-8', 'strict')

如果try块中的代码失败,则不会将任何内容分配给ss,因此 s 将保持最初调用该函数的方式。

由于Exception继承自object,并且自 Python 2.5 以来object一直具有该__unicode__方法,因此该代码可能存在于 Python 2.4 并且现在已过时。

更新:打开拉取请求后,此代码现已从 Django 源中删除:https ://github.com/django/django/commit/ce1eb320e59b577a600eb84d7f423a1897be3576

于 2012-10-15T15:00:05.443 回答
-1
>>> from django.utils.encoding import force_unicode
>>> force_unicode('Hello there')
u'Hello there'
>>> force_unicode(TypeError('No way')) # In this case
u'No way'
于 2012-10-15T15:03:26.470 回答