當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。