當前位置: 首頁>>代碼示例>>Python>>正文


Python codecs.utf_32_be_decode方法代碼示例

本文整理匯總了Python中codecs.utf_32_be_decode方法的典型用法代碼示例。如果您正苦於以下問題:Python codecs.utf_32_be_decode方法的具體用法?Python codecs.utf_32_be_decode怎麽用?Python codecs.utf_32_be_decode使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在codecs的用法示例。


在下文中一共展示了codecs.utf_32_be_decode方法的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_decode_unicode

# 需要導入模塊: import codecs [as 別名]
# 或者: from codecs import utf_32_be_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: _buffer_decode

# 需要導入模塊: import codecs [as 別名]
# 或者: from codecs import utf_32_be_decode [as 別名]
def _buffer_decode(self, input, errors, final):
        if self.decoder is None:
            (output, consumed, byteorder) = \
                codecs.utf_32_ex_decode(input, errors, 0, final)
            if byteorder == -1:
                self.decoder = codecs.utf_32_le_decode
            elif byteorder == 1:
                self.decoder = codecs.utf_32_be_decode
            elif consumed >= 4:
                raise UnicodeError("UTF-32 stream does not start with BOM")
            return (output, consumed)
        return self.decoder(input, self.errors, final) 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:14,代碼來源:utf_32.py

示例3: getstate

# 需要導入模塊: import codecs [as 別名]
# 或者: from codecs import utf_32_be_decode [as 別名]
def getstate(self):
        # additonal state info from the base class must be None here,
        # as it isn't passed along to the caller
        state = codecs.BufferedIncrementalDecoder.getstate(self)[0]
        # additional state info we pass to the caller:
        # 0: stream is in natural order for this platform
        # 1: stream is in unnatural order
        # 2: endianness hasn't been determined yet
        if self.decoder is None:
            return (state, 2)
        addstate = int((sys.byteorder == "big") !=
                       (self.decoder is codecs.utf_32_be_decode))
        return (state, addstate) 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:15,代碼來源:utf_32.py

示例4: setstate

# 需要導入模塊: import codecs [as 別名]
# 或者: from codecs import utf_32_be_decode [as 別名]
def setstate(self, state):
        # state[1] will be ignored by BufferedIncrementalDecoder.setstate()
        codecs.BufferedIncrementalDecoder.setstate(self, state)
        state = state[1]
        if state == 0:
            self.decoder = (codecs.utf_32_be_decode
                            if sys.byteorder == "big"
                            else codecs.utf_32_le_decode)
        elif state == 1:
            self.decoder = (codecs.utf_32_le_decode
                            if sys.byteorder == "big"
                            else codecs.utf_32_be_decode)
        else:
            self.decoder = None 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:16,代碼來源:utf_32.py

示例5: decode

# 需要導入模塊: import codecs [as 別名]
# 或者: from codecs import utf_32_be_decode [as 別名]
def decode(self, input, errors='strict'):
        (object, consumed, byteorder) = \
            codecs.utf_32_ex_decode(input, errors, 0, False)
        if byteorder == -1:
            self.decode = codecs.utf_32_le_decode
        elif byteorder == 1:
            self.decode = codecs.utf_32_be_decode
        elif consumed>=4:
            raise UnicodeError,"UTF-32 stream does not start with BOM"
        return (object, consumed)

### encodings module API 
開發者ID:glmcdona,項目名稱:meddle,代碼行數:14,代碼來源:utf_32.py

示例6: getstate

# 需要導入模塊: import codecs [as 別名]
# 或者: from codecs import utf_32_be_decode [as 別名]
def getstate(self):
        # additional state info from the base class must be None here,
        # as it isn't passed along to the caller
        state = codecs.BufferedIncrementalDecoder.getstate(self)[0]
        # additional state info we pass to the caller:
        # 0: stream is in natural order for this platform
        # 1: stream is in unnatural order
        # 2: endianness hasn't been determined yet
        if self.decoder is None:
            return (state, 2)
        addstate = int((sys.byteorder == "big") !=
                       (self.decoder is codecs.utf_32_be_decode))
        return (state, addstate) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:15,代碼來源:utf_32.py

示例7: decode

# 需要導入模塊: import codecs [as 別名]
# 或者: from codecs import utf_32_be_decode [as 別名]
def decode(input, errors='strict'):
    return codecs.utf_32_be_decode(input, errors, True) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:4,代碼來源:utf_32_be.py

示例8: test_issue8941

# 需要導入模塊: import codecs [as 別名]
# 或者: from codecs import utf_32_be_decode [as 別名]
def test_issue8941(self):
        # Issue #8941: insufficient result allocation when decoding into
        # surrogate pairs on UCS-2 builds.
        encoded = '\x00\x01\x00\x00' * 1024
        self.assertEqual(u'\U00010000' * 1024,
                         codecs.utf_32_be_decode(encoded)[0]) 
開發者ID:IronLanguages,項目名稱:ironpython2,代碼行數:8,代碼來源:test_codecs.py

示例9: decode

# 需要導入模塊: import codecs [as 別名]
# 或者: from codecs import utf_32_be_decode [as 別名]
def decode(self, input, errors='strict'):
        (object, consumed, byteorder) = \
            codecs.utf_32_ex_decode(input, errors, 0, False)
        if byteorder == -1:
            self.decode = codecs.utf_32_le_decode
        elif byteorder == 1:
            self.decode = codecs.utf_32_be_decode
        elif consumed>=4:
            raise UnicodeError("UTF-32 stream does not start with BOM")
        return (object, consumed)

### encodings module API 
開發者ID:awemulya,項目名稱:kobo-predict,代碼行數:14,代碼來源:utf_32.py


注:本文中的codecs.utf_32_be_decode方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。