本文整理汇总了Python中pystache.loader.Loader.to_unicode方法的典型用法代码示例。如果您正苦于以下问题:Python Loader.to_unicode方法的具体用法?Python Loader.to_unicode怎么用?Python Loader.to_unicode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pystache.loader.Loader
的用法示例。
在下文中一共展示了Loader.to_unicode方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_init__to_unicode__default
# 需要导入模块: from pystache.loader import Loader [as 别名]
# 或者: from pystache.loader.Loader import to_unicode [as 别名]
def test_init__to_unicode__default(self):
loader = Loader()
self.assertRaises(TypeError, loader.to_unicode, u"abc")
decode_errors = defaults.DECODE_ERRORS
string_encoding = defaults.STRING_ENCODING
nonascii = 'abcdé'
try:
defaults.DECODE_ERRORS = 'strict'
defaults.STRING_ENCODING = 'ascii'
loader = Loader()
self.assertRaises(UnicodeDecodeError, loader.to_unicode, nonascii)
defaults.DECODE_ERRORS = 'ignore'
loader = Loader()
self.assertString(loader.to_unicode(nonascii), u'abcd')
defaults.STRING_ENCODING = 'utf-8'
loader = Loader()
self.assertString(loader.to_unicode(nonascii), u'abcdé')
finally:
defaults.DECODE_ERRORS = decode_errors
defaults.STRING_ENCODING = string_encoding
示例2: test_unicode__to_unicode__attribute
# 需要导入模块: from pystache.loader import Loader [as 别名]
# 或者: from pystache.loader.Loader import to_unicode [as 别名]
def test_unicode__to_unicode__attribute(self):
"""
Test unicode(): encoding attribute.
"""
loader = Loader()
non_ascii = 'abcdé'.encode('utf-8')
self.assertRaises(UnicodeDecodeError, loader.str, non_ascii)
def to_unicode(s, encoding=None):
if encoding is None:
encoding = 'utf-8'
return str(s, encoding)
loader.to_unicode = to_unicode
self.assertString(loader.str(non_ascii), "abcdé")
示例3: test_unicode__to_unicode__attribute
# 需要导入模块: from pystache.loader import Loader [as 别名]
# 或者: from pystache.loader.Loader import to_unicode [as 别名]
def test_unicode__to_unicode__attribute(self):
"""
Test unicode(): encoding attribute.
"""
reader = Loader()
non_ascii = u'abcdé'.encode('utf-8')
self.assertRaises(UnicodeDecodeError, reader.unicode, non_ascii)
def to_unicode(s, encoding=None):
if encoding is None:
encoding = 'utf-8'
return unicode(s, encoding)
reader.to_unicode = to_unicode
self.assertString(reader.unicode(non_ascii), u"abcdé")