K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / lib / python2.7 / encodings /
server ip : 172.67.156.115

your ip : 172.69.214.235

H O M E


Filename/usr/lib/python2.7/encodings/utf_8.py
Size1005
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 09:52
Last modified23-Mar-2014 07:55
Last accessed06-Jul-2025 03:27
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
""" Python 'utf-8' Codec


Written by Marc-Andre Lemburg ([email protected]).

(c) Copyright CNRI, All Rights Reserved. NO WARRANTY.

"""
import codecs

### Codec APIs

encode = codecs.utf_8_encode

def decode(input, errors='strict'):
return codecs.utf_8_decode(input, errors, True)

class IncrementalEncoder(codecs.IncrementalEncoder):
def encode(self, input, final=False):
return codecs.utf_8_encode(input, self.errors)[0]

class IncrementalDecoder(codecs.BufferedIncrementalDecoder):
_buffer_decode = codecs.utf_8_decode

class StreamWriter(codecs.StreamWriter):
encode = codecs.utf_8_encode

class StreamReader(codecs.StreamReader):
decode = codecs.utf_8_decode

### encodings module API

def getregentry():
return codecs.CodecInfo(
name='utf-8',
encode=encode,
decode=decode,
incrementalencoder=IncrementalEncoder,
incrementaldecoder=IncrementalDecoder,
streamreader=StreamReader,
streamwriter=StreamWriter,
)