本文整理汇总了Python中future.standard_library.email.utils._has_surrogates方法的典型用法代码示例。如果您正苦于以下问题:Python utils._has_surrogates方法的具体用法?Python utils._has_surrogates怎么用?Python utils._has_surrogates使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类future.standard_library.email.utils
的用法示例。
在下文中一共展示了utils._has_surrogates方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: _fold
# 需要导入模块: from future.standard_library.email import utils [as 别名]
# 或者: from future.standard_library.email.utils import _has_surrogates [as 别名]
def _fold(self, name, value, refold_binary=False):
if hasattr(value, 'name'):
return value.fold(policy=self)
maxlen = self.max_line_length if self.max_line_length else float('inf')
lines = value.splitlines()
refold = (self.refold_source == 'all' or
self.refold_source == 'long' and
(lines and len(lines[0])+len(name)+2 > maxlen or
any(len(x) > maxlen for x in lines[1:])))
if refold or refold_binary and _has_surrogates(value):
return self.header_factory(name, ''.join(lines)).fold(policy=self)
return name + ': ' + self.linesep.join(lines) + self.linesep