本文整理匯總了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