Python codecs.mbcs_decode() Examples

The following are 30 code examples of codecs.mbcs_decode(). You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may also want to check out all available functions/classes of the module codecs , or try the search function .
Example #1
Source File: test_codecs.py    From ironpython3 with Apache License 2.0 6 votes vote down vote up
def test_mbcs_decode(self):
        for mode in ['strict', 'replace', 'ignore', 'badmodethatdoesnotexist', None]:
            if is_netcoreapp and mode == 'badmodethatdoesnotexist': continue # FallbackBuffer created even if not used
            self.assertEqual(codecs.mbcs_decode(b'foo', mode), ('foo', 3))
            cpyres = '\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\u017d\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\u017e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff'
            allchars = bytes(range(256))
            self.assertEqual(codecs.mbcs_decode(allchars, mode)[0], cpyres)

            # round tripping
            self.assertEqual(codecs.mbcs_encode(codecs.mbcs_decode(allchars, mode)[0])[0], allchars)

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

        self.assertRaises(TypeError, codecs.mbcs_decode, "abc")
        self.assertRaises(TypeError, codecs.mbcs_decode, None)
        self.assertRaises(TypeError, codecs.mbcs_decode, None, None) 
Example #2
Source File: test_codecs.py    From ironpython3 with Apache License 2.0 6 votes vote down vote up
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") 
Example #3
Source File: test_codecs.py    From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 6 votes vote down vote up
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") 
Example #4
Source File: test_codecs.py    From Fluid-Designer with GNU General Public License v3.0 6 votes vote down vote up
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") 
Example #5
Source File: mbcs.py    From odoo13-x64 with GNU General Public License v3.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #6
Source File: mbcs.py    From datafari with Apache License 2.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #7
Source File: mbcs.py    From Splunking-Crime with GNU Affero General Public License v3.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #8
Source File: mbcs.py    From PhonePi_SampleServer with MIT License 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #9
Source File: mbcs.py    From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #10
Source File: mbcs.py    From medicare-demo with Apache License 2.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #11
Source File: mbcs.py    From syntheticmass with Apache License 2.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #12
Source File: mbcs.py    From ImageFusion with MIT License 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #13
Source File: mbcs.py    From CTFCrackTools-V2 with GNU General Public License v3.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #14
Source File: mbcs.py    From CTFCrackTools-V2 with GNU General Public License v3.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #15
Source File: mbcs.py    From RevitBatchProcessor with GNU General Public License v3.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #16
Source File: mbcs.py    From Carnets with BSD 3-Clause "New" or "Revised" License 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #17
Source File: mbcs.py    From PokemonGo-DesktopMap with MIT License 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #18
Source File: mbcs.py    From unity-python with MIT License 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #19
Source File: mbcs.py    From android_universal with MIT License 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #20
Source File: mbcs.py    From canape with GNU General Public License v3.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #21
Source File: mbcs.py    From CTFCrackTools with GNU General Public License v3.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #22
Source File: mbcs.py    From CTFCrackTools with GNU General Public License v3.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #23
Source File: mbcs.py    From GraphicDesignPatternByPython with MIT License 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #24
Source File: mbcs.py    From ironpython2 with Apache License 2.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #25
Source File: test_codecs.py    From ironpython2 with Apache License 2.0 5 votes vote down vote up
def test_mbcs_decode(self):
        for mode in ['strict', 'replace', 'ignore', 'badmodethatdoesnotexist']:
            self.assertEqual(codecs.mbcs_decode('foo', mode), ('foo', 3))
            cpyres = u'\x00\x01\x02\x03\x04\x05\x06\x07\x08\t\n\x0b\x0c\r\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~\x7f\u20ac\x81\u201a\u0192\u201e\u2026\u2020\u2021\u02c6\u2030\u0160\u2039\u0152\x8d\u017d\x8f\x90\u2018\u2019\u201c\u201d\u2022\u2013\u2014\u02dc\u2122\u0161\u203a\u0153\x9d\u017e\u0178\xa0\xa1\xa2\xa3\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xab\xac\xad\xae\xaf\xb0\xb1\xb2\xb3\xb4\xb5\xb6\xb7\xb8\xb9\xba\xbb\xbc\xbd\xbe\xbf\xc0\xc1\xc2\xc3\xc4\xc5\xc6\xc7\xc8\xc9\xca\xcb\xcc\xcd\xce\xcf\xd0\xd1\xd2\xd3\xd4\xd5\xd6\xd7\xd8\xd9\xda\xdb\xdc\xdd\xde\xdf\xe0\xe1\xe2\xe3\xe4\xe5\xe6\xe7\xe8\xe9\xea\xeb\xec\xed\xee\xef\xf0\xf1\xf2\xf3\xf4\xf5\xf6\xf7\xf8\xf9\xfa\xfb\xfc\xfd\xfe\xff'
            allchars = ''.join([chr(i) for i in xrange(256)])
            self.assertEqual(codecs.mbcs_decode(allchars, mode)[0], cpyres)
            
            # round tripping
            self.assertEqual(codecs.mbcs_encode(codecs.mbcs_decode(allchars, mode)[0])[0], allchars) 
Example #26
Source File: mbcs.py    From kobo-predict with BSD 2-Clause "Simplified" License 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #27
Source File: mbcs.py    From BinderFilter with MIT License 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #28
Source File: mbcs.py    From Computable with MIT License 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #29
Source File: mbcs.py    From oss-ftp with MIT License 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True) 
Example #30
Source File: mbcs.py    From Safejumper-for-Desktop with GNU General Public License v2.0 5 votes vote down vote up
def decode(input, errors='strict'):
    return mbcs_decode(input, errors, True)