本文整理匯總了Python中markupsafe.Markup.__new__方法的典型用法代碼示例。如果您正苦於以下問題:Python Markup.__new__方法的具體用法?Python Markup.__new__怎麽用?Python Markup.__new__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類markupsafe.Markup
的用法示例。
在下文中一共展示了Markup.__new__方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: __new__
# 需要導入模塊: from markupsafe import Markup [as 別名]
# 或者: from markupsafe.Markup import __new__ [as 別名]
def __new__(cls, content=u'', preformatted=None):
obj = Markup.__new__(cls, content)
if preformatted is None:
tmp = content.lower()
obj._preformatted = not any(tag in tmp for tag in (u'<p>', u'<p ', u'<br', u'<li>'))
else:
obj._preformatted = preformatted
return obj
示例2: __new__
# 需要導入模塊: from markupsafe import Markup [as 別名]
# 或者: from markupsafe.Markup import __new__ [as 別名]
def __new__(cls, content=u"", preformatted=None):
obj = Markup.__new__(cls, content)
if preformatted is None:
tmp = content.lower()
obj._preformatted = not any(tag in tmp for tag in (u"<p>", u"<p ", u"<br", u"<li>"))
else:
obj._preformatted = preformatted
return obj
示例3: __new__
# 需要導入模塊: from markupsafe import Markup [as 別名]
# 或者: from markupsafe.Markup import __new__ [as 別名]
def __new__(cls, base=u'', encoding=None, errors='strict'):
"""Add encoding for base of type str."""
if encoding is None and isinstance(base, str):
encoding = 'utf8'
warnings.warn(
"Convert string '{0}' in template to unicode.".format(base),
RuntimeWarning, stacklevel=3)
return jinja2_Markup.__new__(cls, base=base, encoding=encoding,
errors=errors)
示例4: __new__
# 需要導入模塊: from markupsafe import Markup [as 別名]
# 或者: from markupsafe.Markup import __new__ [as 別名]
def __new__(cls, base=u'', encoding=None, errors='strict'):
if encoding is None and isinstance(base, str):
encoding = 'utf8'
return jinja2_Markup.__new__(cls, base=base, encoding=encoding,
errors=errors)