当前位置: 首页>>代码示例>>Python>>正文


Python errors.UndecodableBytesDefect方法代码示例

本文整理汇总了Python中email.errors.UndecodableBytesDefect方法的典型用法代码示例。如果您正苦于以下问题:Python errors.UndecodableBytesDefect方法的具体用法?Python errors.UndecodableBytesDefect怎么用?Python errors.UndecodableBytesDefect使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在email.errors的用法示例。


在下文中一共展示了errors.UndecodableBytesDefect方法的9个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: decode

# 需要导入模块: from email import errors [as 别名]
# 或者: from email.errors import UndecodableBytesDefect [as 别名]
def decode(ew):
    """Decode encoded word and return (string, charset, lang, defects) tuple.

    An RFC 2047/2243 encoded word has the form:

        =?charset*lang?cte?encoded_string?=

    where '*lang' may be omitted but the other parts may not be.

    This function expects exactly such a string (that is, it does not check the
    syntax and may raise errors if the string is not well formed), and returns
    the encoded_string decoded first from its Content Transfer Encoding and
    then from the resulting bytes into unicode using the specified charset.  If
    the cte-decoded string does not successfully decode using the specified
    character set, a defect is added to the defects list and the unknown octets
    are replaced by the unicode 'unknown' character \\uFDFF.

    The specified charset and language are returned.  The default for language,
    which is rarely if ever encountered, is the empty string.

    """
    _, charset, cte, cte_string, _ = ew.split('?')
    charset, _, lang = charset.partition('*')
    cte = cte.lower()
    # Recover the original bytes and do CTE decoding.
    bstring = cte_string.encode('ascii', 'surrogateescape')
    bstring, defects = _cte_decoders[cte](bstring)
    # Turn the CTE decoded bytes into unicode.
    try:
        string = bstring.decode(charset)
    except UnicodeError:
        defects.append(errors.UndecodableBytesDefect("Encoded word "
            "contains bytes not decodable using {} charset".format(charset)))
        string = bstring.decode(charset, 'surrogateescape')
    except LookupError:
        string = bstring.decode('ascii', 'surrogateescape')
        if charset.lower() != 'unknown-8bit':
            defects.append(errors.CharsetError("Unknown charset {} "
                "in encoded word; decoded as unknown bytes".format(charset)))
    return string, charset, lang, defects 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:42,代码来源:_encoded_words.py

示例2: _fold

# 需要导入模块: from email import errors [as 别名]
# 或者: from email.errors import UndecodableBytesDefect [as 别名]
def _fold(self, folded):
        encoding = 'utf-8' if folded.policy.utf8 else 'ascii'
        for part in self.parts:
            tstr = str(part)
            tlen = len(tstr)
            try:
                str(part).encode(encoding)
            except UnicodeEncodeError:
                if any(isinstance(x, errors.UndecodableBytesDefect)
                        for x in part.all_defects):
                    charset = 'unknown-8bit'
                else:
                    # XXX: this should be a policy setting when utf8 is False.
                    charset = 'utf-8'
                tstr = part.cte_encode(charset, folded.policy)
                tlen = len(tstr)
            if folded.append_if_fits(part, tstr):
                continue
            # Peel off the leading whitespace if any and make it sticky, to
            # avoid infinite recursion.
            ws = part.pop_leading_fws()
            if ws is not None:
                # Peel off the leading whitespace and make it sticky, to
                # avoid infinite recursion.
                folded.stickyspace = str(part.pop(0))
                if folded.append_if_fits(part):
                    continue
            if part.has_fws:
                part._fold(folded)
                continue
            # There are no fold points in this one; it is too long for a single
            # line and can't be split...we just have to put it on its own line.
            folded.append(tstr)
            folded.newline() 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:36,代码来源:_header_value_parser.py

示例3: _validate_xtext

# 需要导入模块: from email import errors [as 别名]
# 或者: from email.errors import UndecodableBytesDefect [as 别名]
def _validate_xtext(xtext):
    """If input token contains ASCII non-printables, register a defect."""

    non_printables = _non_printable_finder(xtext)
    if non_printables:
        xtext.defects.append(errors.NonPrintableDefect(non_printables))
    if utils._has_surrogates(xtext):
        xtext.defects.append(errors.UndecodableBytesDefect(
            "Non-ASCII characters found in header token")) 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:11,代码来源:_header_value_parser.py

示例4: test_q_escaped_bytes_preserved

# 需要导入模块: from email import errors [as 别名]
# 或者: from email.errors import UndecodableBytesDefect [as 别名]
def test_q_escaped_bytes_preserved(self):
        self._test(b'=?us-ascii?q?=20\xACfoo?='.decode('us-ascii',
                                                       'surrogateescape'),
                   ' \uDCACfoo',
                   defects = [errors.UndecodableBytesDefect]) 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:7,代码来源:test__encoded_words.py

示例5: test_get_unstructured_undecodable_bytes

# 需要导入模块: from email import errors [as 别名]
# 或者: from email.errors import UndecodableBytesDefect [as 别名]
def test_get_unstructured_undecodable_bytes(self):
        self._test_get_x(self._get_unst,
            b'test \xACfoo  val'.decode('ascii', 'surrogateescape'),
            'test \uDCACfoo  val',
            'test \uDCACfoo val',
            [errors.UndecodableBytesDefect],
            '') 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:9,代码来源:test__header_value_parser.py

示例6: test_get_unstructured_undecodable_bytes_in_EW

# 需要导入模块: from email import errors [as 别名]
# 或者: from email.errors import UndecodableBytesDefect [as 别名]
def test_get_unstructured_undecodable_bytes_in_EW(self):
        self._test_get_x(self._get_unst,
            (b'=?us-ascii?q?=20test?=   =?us-ascii?q?=20\xACfoo?='
                b'  val').decode('ascii', 'surrogateescape'),
            ' test \uDCACfoo  val',
            ' test \uDCACfoo val',
            [errors.UndecodableBytesDefect]*2,
            '') 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:10,代码来源:test__header_value_parser.py

示例7: _fold

# 需要导入模块: from email import errors [as 别名]
# 或者: from email.errors import UndecodableBytesDefect [as 别名]
def _fold(self, folded):
        for part in self.parts:
            tstr = str(part)
            tlen = len(tstr)
            try:
                str(part).encode('us-ascii')
            except UnicodeEncodeError:
                if any(isinstance(x, errors.UndecodableBytesDefect)
                        for x in part.all_defects):
                    charset = 'unknown-8bit'
                else:
                    # XXX: this should be a policy setting
                    charset = 'utf-8'
                tstr = part.cte_encode(charset, folded.policy)
                tlen = len(tstr)
            if folded.append_if_fits(part, tstr):
                continue
            # Peel off the leading whitespace if any and make it sticky, to
            # avoid infinite recursion.
            ws = part.pop_leading_fws()
            if ws is not None:
                # Peel off the leading whitespace and make it sticky, to
                # avoid infinite recursion.
                folded.stickyspace = str(part.pop(0))
                if folded.append_if_fits(part):
                    continue
            if part.has_fws:
                part._fold(folded)
                continue
            # There are no fold points in this one; it is too long for a single
            # line and can't be split...we just have to put it on its own line.
            folded.append(tstr)
            folded.newline() 
开发者ID:IronLanguages,项目名称:ironpython3,代码行数:35,代码来源:_header_value_parser.py

示例8: test_undecodable_bytes_error_preserved

# 需要导入模块: from email import errors [as 别名]
# 或者: from email.errors import UndecodableBytesDefect [as 别名]
def test_undecodable_bytes_error_preserved(self):
        badstr = b"le pouf c\xaflebre".decode('ascii', 'surrogateescape')
        unst = parser.get_unstructured(badstr)
        self.assertDefectsEqual(unst.all_defects, [errors.UndecodableBytesDefect])
        parts = list(unst.parts)
        self.assertDefectsEqual(parts[0].all_defects, [])
        self.assertDefectsEqual(parts[1].all_defects, [])
        self.assertDefectsEqual(parts[2].all_defects, [errors.UndecodableBytesDefect]) 
开发者ID:IronLanguages,项目名称:ironpython3,代码行数:10,代码来源:test__header_value_parser.py

示例9: _fold

# 需要导入模块: from email import errors [as 别名]
# 或者: from email.errors import UndecodableBytesDefect [as 别名]
def _fold(self, folded):
        encoding = 'utf-8' if folded.policy.utf8 else 'ascii'
        for part in self.parts:
            tstr = str(part)
            tlen = len(tstr)
            try:
                str(part).encode(encoding)
            except UnicodeEncodeError:
                if any(isinstance(x, errors.UndecodableBytesDefect)
                        for x in part.all_defects):
                    charset = 'unknown-8bit'
                else:
                    # XXX: this should be a policy setting when utf8 is False.
                    charset = 'utf-8'
                tstr = part.cte_encode(charset, folded.policy)
                tlen = len(tstr)
            if folded.append_if_fits(part, tstr):
                continue
            # Peel off the leading whitespace if any and make it sticky, to
            # avoid infinite recursion.
            ws = part.pop_leading_fws()
            if ws is not None:
                folded.stickyspace = str(ws)
                if folded.append_if_fits(part):
                    continue
            if part.has_fws:
                part._fold(folded)
                continue
            # There are no fold points in this one; it is too long for a single
            # line and can't be split...we just have to put it on its own line.
            folded.append(tstr)
            folded.newline() 
开发者ID:ShikyoKira,项目名称:Project-New-Reign---Nemesis-Main,代码行数:34,代码来源:_header_value_parser.py


注:本文中的email.errors.UndecodableBytesDefect方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。