Python codecs.utf_32_le_encode() Examples

The following are 30 code examples of codecs.utf_32_le_encode(). 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: utf_32.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #2
Source File: utf_32.py    From datafari with Apache License 2.0 5 votes vote down vote up
def setstate(self, state):
        if state:
            self.encoder = None
        else:
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode 
Example #3
Source File: utf_32.py    From ImageFusion with MIT License 5 votes vote down vote up
def encode(self, input, errors='strict'):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #4
Source File: utf_32_le.py    From datafari with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_le_encode(input, self.errors)[0] 
Example #5
Source File: utf_32.py    From Splunking-Crime with GNU Affero General Public License v3.0 5 votes vote down vote up
def encode(self, input, final=False):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #6
Source File: utf_32.py    From datafari with Apache License 2.0 5 votes vote down vote up
def encode(self, input, errors='strict'):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #7
Source File: utf_32_le.py    From python2017 with MIT License 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_le_encode(input, self.errors)[0] 
Example #8
Source File: utf_32.py    From python2017 with MIT License 5 votes vote down vote up
def encode(self, input, errors='strict'):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #9
Source File: utf_32.py    From python2017 with MIT License 5 votes vote down vote up
def setstate(self, state):
        if state:
            self.encoder = None
        else:
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode 
Example #10
Source File: utf_32.py    From python2017 with MIT License 5 votes vote down vote up
def encode(self, input, final=False):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #11
Source File: utf_32.py    From datafari with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #12
Source File: test_codecs.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def test_utf_32_le_encode(self):
        data, num_processed = codecs.utf_32_le_encode("abc")
        self.assertEqual(data, b'a\0\0\0b\0\0\0c\0\0\0')
        self.assertEqual(num_processed, 3)

        self.assertRaises(TypeError, codecs.utf_32_le_encode, b"abc")
        self.assertRaises(TypeError, codecs.utf_32_le_encode, None)
        self.assertRaises(TypeError, codecs.utf_32_le_encode, None, None)
        self.assertEquals(codecs.utf_32_le_encode("", None), (b"", 0)) 
Example #13
Source File: utf_32_le.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_le_encode(input, self.errors)[0] 
Example #14
Source File: utf_32.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def encode(self, input, errors='strict'):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #15
Source File: utf_32.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def setstate(self, state):
        if state:
            self.encoder = None
        else:
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode 
Example #16
Source File: utf_32.py    From python with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #17
Source File: utf_32.py    From telegram-robot-rss with Mozilla Public License 2.0 5 votes vote down vote up
def encode(self, input, errors='strict'):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #18
Source File: utf_32.py    From telegram-robot-rss with Mozilla Public License 2.0 5 votes vote down vote up
def setstate(self, state):
        if state:
            self.encoder = None
        else:
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode 
Example #19
Source File: utf_32.py    From telegram-robot-rss with Mozilla Public License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #20
Source File: utf_32_le.py    From telegram-robot-rss with Mozilla Public License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_le_encode(input, self.errors)[0] 
Example #21
Source File: utf_32.py    From scylla with Apache License 2.0 5 votes vote down vote up
def encode(self, input, errors='strict'):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #22
Source File: utf_32.py    From scylla with Apache License 2.0 5 votes vote down vote up
def setstate(self, state):
        if state:
            self.encoder = None
        else:
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode 
Example #23
Source File: utf_32.py    From scylla with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #24
Source File: utf_32_le.py    From scylla with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_le_encode(input, self.errors)[0] 
Example #25
Source File: utf_32_le.py    From Imogen with MIT License 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_le_encode(input, self.errors)[0] 
Example #26
Source File: utf_32.py    From Imogen with MIT License 5 votes vote down vote up
def encode(self, input, errors='strict'):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #27
Source File: utf_32.py    From Imogen with MIT License 5 votes vote down vote up
def setstate(self, state):
        if state:
            self.encoder = None
        else:
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode 
Example #28
Source File: utf_32.py    From Imogen with MIT License 5 votes vote down vote up
def encode(self, input, final=False):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #29
Source File: utf_32_le.py    From Fluid-Designer with GNU General Public License v3.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_le_encode(input, self.errors)[0] 
Example #30
Source File: utf_32.py    From Fluid-Designer with GNU General Public License v3.0 5 votes vote down vote up
def encode(self, input, errors='strict'):
        if self.encoder is None:
            result = codecs.utf_32_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_32_le_encode
            else:
                self.encoder = codecs.utf_32_be_encode
            return result
        else:
            return self.encoder(input, errors)