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


Python codecs.latin_1_decode方法代码示例

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


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

示例1: test_decode_unicode

# 需要导入模块: import codecs [as 别名]
# 或者: from codecs import latin_1_decode [as 别名]
def test_decode_unicode(self):
        # Most decoders don't accept unicode input
        decoders = [
            codecs.utf_7_decode,
            codecs.utf_8_decode,
            codecs.utf_16_le_decode,
            codecs.utf_16_be_decode,
            codecs.utf_16_ex_decode,
            codecs.utf_32_decode,
            codecs.utf_32_le_decode,
            codecs.utf_32_be_decode,
            codecs.utf_32_ex_decode,
            codecs.latin_1_decode,
            codecs.ascii_decode,
            codecs.charmap_decode,
        ]
        if hasattr(codecs, "mbcs_decode"):
            decoders.append(codecs.mbcs_decode)
        for decoder in decoders:
            self.assertRaises(TypeError, decoder, "xxx") 
开发者ID:Microvellum,项目名称:Fluid-Designer,代码行数:22,代码来源:test_codecs.py

示例2: get_entitydefs

# 需要导入模块: import codecs [as 别名]
# 或者: from codecs import latin_1_decode [as 别名]
def get_entitydefs():
    import htmlentitydefs
    from codecs import latin_1_decode
    entitydefs = {}
    try:
        htmlentitydefs.name2codepoint
    except AttributeError:
        entitydefs = {}
        for name, char in htmlentitydefs.entitydefs.items():
            uc = latin_1_decode(char)[0]
            if uc.startswith("&#") and uc.endswith(";"):
                uc = unescape_charref(uc[2:-1], None)
            entitydefs["&%s;" % name] = uc
    else:
        for name, codepoint in htmlentitydefs.name2codepoint.items():
            entitydefs["&%s;" % name] = unichr(codepoint)
    return entitydefs 
开发者ID:krintoxi,项目名称:NoobSec-Toolkit,代码行数:19,代码来源:clientform.py

示例3: decode

# 需要导入模块: import codecs [as 别名]
# 或者: from codecs import latin_1_decode [as 别名]
def decode(self, input, final=False):
        return codecs.latin_1_decode(input,self.errors)[0] 
开发者ID:glmcdona,项目名称:meddle,代码行数:4,代码来源:latin_1.py

示例4: test_latin_1_decode

# 需要导入模块: import codecs [as 别名]
# 或者: from codecs import latin_1_decode [as 别名]
def test_latin_1_decode(self):
        #sanity
        new_str, size = codecs.latin_1_decode("abc")
        self.assertEqual(new_str, u'abc')
        self.assertEqual(size, 3) 
开发者ID:IronLanguages,项目名称:ironpython2,代码行数:7,代码来源:test_codecs.py

示例5: name2cp

# 需要导入模块: import codecs [as 别名]
# 或者: from codecs import latin_1_decode [as 别名]
def name2cp(k):
    if k == 'apos': return ord("'")
    if hasattr(htmlentitydefs, "name2codepoint"): # requires Python 2.3
        return htmlentitydefs.name2codepoint[k]
    else:
        k = htmlentitydefs.entitydefs[k]
        if k.startswith("&#") and k.endswith(";"): return int(k[2:-1]) # not in latin-1
        return ord(codecs.latin_1_decode(k)[0]) 
开发者ID:schollz,项目名称:extract_recipe,代码行数:10,代码来源:extract_recipe.py

示例6: makestring

# 需要导入模块: import codecs [as 别名]
# 或者: from codecs import latin_1_decode [as 别名]
def makestring(x):
        return codecs.latin_1_decode(x)[0] 
开发者ID:odwyersoftware,项目名称:mega.py,代码行数:4,代码来源:crypto.py

示例7: test_latin_1_decode

# 需要导入模块: import codecs [as 别名]
# 或者: from codecs import latin_1_decode [as 别名]
def test_latin_1_decode(self):
        #sanity
        new_str, num_processed = codecs.latin_1_decode(b"abc")
        self.assertEqual(new_str, 'abc')
        self.assertEqual(num_processed, 3)

        self.assertEqual(codecs.latin_1_decode(array.array('I', (1633771873,))), ("aaaa", 4))

        self.assertRaises(TypeError, codecs.latin_1_decode, "abc")
        self.assertRaises(TypeError, codecs.latin_1_decode, None)
        self.assertRaises(TypeError, codecs.latin_1_decode, None, None) 
开发者ID:IronLanguages,项目名称:ironpython3,代码行数:13,代码来源:test_codecs.py


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