Python codecs.utf_32_be_encode() Examples

The following are 30 code examples of codecs.utf_32_be_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 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 #2
Source File: utf_32.py    From CTFCrackTools-V2 with GNU 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 #3
Source File: utf_32.py    From odoo13-x64 with GNU 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 #4
Source File: utf_32.py    From RevitBatchProcessor with GNU 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 #5
Source File: utf_32.py    From RevitBatchProcessor 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) 
Example #6
Source File: utf_32.py    From CTFCrackTools-V2 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) 
Example #7
Source File: utf_32.py    From CTFCrackTools-V2 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) 
Example #8
Source File: utf_32.py    From CTFCrackTools-V2 with GNU 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 #9
Source File: utf_32_be.py    From odoo13-x64 with GNU General Public License v3.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_be_encode(input, self.errors)[0] 
Example #10
Source File: utf_32.py    From odoo13-x64 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) 
Example #11
Source File: utf_32_be.py    From CTFCrackTools-V2 with GNU General Public License v3.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_be_encode(input, self.errors)[0] 
Example #12
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, 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 #13
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 #14
Source File: utf_32_be.py    From datafari with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_be_encode(input, self.errors)[0] 
Example #15
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 #16
Source File: utf_32_be.py    From Splunking-Crime with GNU Affero General Public License v3.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_be_encode(input, self.errors)[0] 
Example #17
Source File: utf_32_be.py    From python2017 with MIT License 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_be_encode(input, self.errors)[0] 
Example #18
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 #19
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 #20
Source File: utf_32.py    From ImageFusion 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 #21
Source File: utf_32_be.py    From ImageFusion with MIT License 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_be_encode(input, self.errors)[0] 
Example #22
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 #23
Source File: utf_32.py    From ImageFusion 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 #24
Source File: utf_32_be.py    From ImageFusion with MIT License 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_be_encode(input, self.errors)[0] 
Example #25
Source File: utf_32_be.py    From python with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_be_encode(input, self.errors)[0] 
Example #26
Source File: utf_32.py    From python 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 #27
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 #28
Source File: test_codecs.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def test_utf_32_be_encode(self):
        data, num_processed = codecs.utf_32_be_encode("abc")
        self.assertEqual(data, b'\0\0\0a\0\0\0b\0\0\0c')
        self.assertEqual(num_processed, 3)

        self.assertRaises(TypeError, codecs.utf_32_be_encode, b"abc")
        self.assertRaises(TypeError, codecs.utf_32_be_encode, None)
        self.assertRaises(TypeError, codecs.utf_32_be_encode, None, None)
        self.assertEquals(codecs.utf_32_be_encode("", None), (b"", 0)) 
Example #29
Source File: utf_32_be.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_32_be_encode(input, self.errors)[0] 
Example #30
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)