Python codecs.utf_16_be_encode() Examples

The following are 30 code examples of codecs.utf_16_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_16.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_16_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #2
Source File: utf_16.py    From syntheticmass 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_16_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #3
Source File: utf_16.py    From Project-New-Reign---Nemesis-Main 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_16_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #4
Source File: utf_16.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_16_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #5
Source File: utf_16.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_16_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #6
Source File: utf_16.py    From syntheticmass 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_16_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #7
Source File: utf_16_be.py    From medicare-demo with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_16_be_encode(input, self.errors)[0] 
Example #8
Source File: utf_16.py    From medicare-demo with Apache License 2.0 5 votes vote down vote up
def encode(self, input, errors='strict'):
        self.bom_written = True
        result = codecs.utf_16_encode(input, errors)
        if sys.byteorder == 'little':
            self.encode = codecs.utf_16_le_encode
        else:
            self.encode = codecs.utf_16_be_encode
        return result 
Example #9
Source File: utf_16.py    From medicare-demo 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_16_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #10
Source File: utf_16_be.py    From Project-New-Reign---Nemesis-Main with GNU General Public License v3.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_16_be_encode(input, self.errors)[0] 
Example #11
Source File: utf_16_be.py    From syntheticmass with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_16_be_encode(input, self.errors)[0] 
Example #12
Source File: utf_16.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_16_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #13
Source File: utf_16_be.py    From python2017 with MIT License 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_16_be_encode(input, self.errors)[0] 
Example #14
Source File: utf_16.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_16_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #15
Source File: utf_16.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_16_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #16
Source File: utf_16.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_16_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #17
Source File: utf_16_be.py    From ImageFusion with MIT License 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_16_be_encode(input, self.errors)[0] 
Example #18
Source File: utf_16.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_16_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #19
Source File: utf_16.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_16_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #20
Source File: utf_16_be.py    From ImageFusion with MIT License 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_16_be_encode(input, self.errors)[0] 
Example #21
Source File: utf_16_be.py    From python with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_16_be_encode(input, self.errors)[0] 
Example #22
Source File: utf_16.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_16_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #23
Source File: utf_16.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_16_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #24
Source File: test_codecs.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def test_utf_16_be_encode(self):
        data, num_processed = codecs.utf_16_be_encode("abc")
        self.assertEqual(data, b'\0a\0b\0c')
        self.assertEqual(num_processed, 3)

        self.assertRaises(TypeError, codecs.utf_16_be_encode, b"abc")
        self.assertRaises(TypeError, codecs.utf_16_be_encode, None)
        self.assertRaises(TypeError, codecs.utf_16_be_encode, None, None)
        self.assertEquals(codecs.utf_16_be_encode("", None), (b"", 0)) 
Example #25
Source File: utf_16_be.py    From ironpython3 with Apache License 2.0 5 votes vote down vote up
def encode(self, input, final=False):
        return codecs.utf_16_be_encode(input, self.errors)[0] 
Example #26
Source File: utf_16.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_16_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #27
Source File: utf_16.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_16_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #28
Source File: utf_16.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_16_encode(input, errors)
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        else:
            return self.encoder(input, errors) 
Example #29
Source File: utf_16.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_16_encode(input, self.errors)[0]
            if sys.byteorder == 'little':
                self.encoder = codecs.utf_16_le_encode
            else:
                self.encoder = codecs.utf_16_be_encode
            return result
        return self.encoder(input, self.errors)[0] 
Example #30
Source File: utf_16_be.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_16_be_encode(input, self.errors)[0]