Server: appserver-7f0f8755-nginx-15961cad18524ec5a9db05f2a6a7e440
Current directory: /usr/lib/python2.7/encodings
Software: nginx/1.27.5
Shell Command
Create a new file
Upload file
File: koi8_r.py
""" Python Character Mapping Codec koi8_r generated from 'MAPPINGS/VENDORS/MISC/KOI8-R.TXT' with gencodec.py. """#" import codecs ### Codec APIs class Codec(codecs.Codec): def encode(self,input,errors='strict'): return codecs.charmap_encode(input,errors,encoding_table) def decode(self,input,errors='strict'): return codecs.charmap_decode(input,errors,decoding_table) class IncrementalEncoder(codecs.IncrementalEncoder): def encode(self, input, final=False): return codecs.charmap_encode(input,self.errors,encoding_table)[0] class IncrementalDecoder(codecs.IncrementalDecoder): def decode(self, input, final=False): return codecs.charmap_decode(input,self.errors,decoding_table)[0] class StreamWriter(Codec,codecs.StreamWriter): pass class StreamReader(Codec,codecs.StreamReader): pass ### encodings module API def getregentry(): return codecs.CodecInfo( name='koi8-r', encode=Codec().encode, decode=Codec().decode, incrementalencoder=IncrementalEncoder, incrementaldecoder=IncrementalDecoder, streamreader=StreamReader, streamwriter=StreamWriter, ) ### Decoding Table decoding_table = ( u'\x00' # 0x00 -> NULL u'\x01' # 0x01 -> START OF HEADING u'\x02' # 0x02 -> START OF TEXT u'\x03' # 0x03 -> END OF TEXT u'\x04' # 0x04 -> END OF TRANSMISSION u'\x05' # 0x05 -> ENQUIRY u'\x06' # 0x06 -> ACKNOWLEDGE u'\x07' # 0x07 -> BELL u'\x08' # 0x08 -> BACKSPACE u'\t' # 0x09 -> HORIZONTAL TABULATION u'\n' # 0x0A -> LINE FEED u'\x0b' # 0x0B -> VERTICAL TABULATION u'\x0c' # 0x0C -> FORM FEED u'\r' # 0x0D -> CARRIAGE RETURN u'\x0e' # 0x0E -> SHIFT OUT u'\x0f' # 0x0F -> SHIFT IN u'\x10' # 0x10 -> DATA LINK ESCAPE u'\x11' # 0x11 -> DEVICE CONTROL ONE u'\x12' # 0x12 -> DEVICE CONTROL TWO u'\x13' # 0x13 -> DEVICE CONTROL THREE u'\x14' # 0x14 -> DEVICE CONTROL FOUR u'\x15' # 0x15 -> NEGATIVE ACKNOWLEDGE u'\x16' # 0x16 -> SYNCHRONOUS IDLE u'\x17' # 0x17 -> END OF TRANSMISSION BLOCK u'\x18' # 0x18 -> CANCEL u'\x19' # 0x19 -> END OF MEDIUM u'\x1a' # 0x1A -> SUBSTITUTE u'\x1b' # 0x1B -> ESCAPE u'\x1c' # 0x1C -> FILE SEPARATOR u'\x1d' # 0x1D -> GROUP SEPARATOR u'\x1e' # 0x1E -> RECORD SEPARATOR u'\x1f' # 0x1F -> UNIT SEPARATOR u' ' # 0x20 -> SPACE u'!' # 0x21 -> EXCLAMATION MARK u'"' # 0x22 -> QUOTATION MARK u'#' # 0x23 -> NUMBER SIGN u'$' # 0x24 -> DOLLAR SIGN u'%' # 0x25 -> PERCENT SIGN u'&' # 0x26 -> AMPERSAND u"'" # 0x27 -> APOSTROPHE u'(' # 0x28 -> LEFT PARENTHESIS u')' # 0x29 -> RIGHT PARENTHESIS u'*' # 0x2A -> ASTERISK u'+' # 0x2B -> PLUS SIGN u',' # 0x2C -> COMMA u'-' # 0x2D -> HYPHEN-MINUS u'.' # 0x2E -> FULL STOP u'/' # 0x2F -> SOLIDUS u'0' # 0x30 -> DIGIT ZERO u'1' # 0x31 -> DIGIT ONE u'2' # 0x32 -> DIGIT TWO u'3' # 0x33 -> DIGIT THREE u'4' # 0x34 -> DIGIT FOUR u'5' # 0x35 -> DIGIT FIVE u'6' # 0x36 -> DIGIT SIX u'7' # 0x37 -> DIGIT SEVEN u'8' # 0x38 -> DIGIT EIGHT u'9' # 0x39 -> DIGIT NINE u':' # 0x3A -> COLON u';' # 0x3B -> SEMICOLON u'<' # 0x3C -> LESS-THAN SIGN u'=' # 0x3D -> EQUALS SIGN u'>' # 0x3E -> GREATER-THAN SIGN u'?' # 0x3F -> QUESTION MARK u'@' # 0x40 -> COMMERCIAL AT u'A' # 0x41 -> LATIN CAPITAL LETTER A u'B' # 0x42 -> LATIN CAPITAL LETTER B u'C' # 0x43 -> LATIN CAPITAL LETTER C u'D' # 0x44 -> LATIN CAPITAL LETTER D u'E' # 0x45 -> LATIN CAPITAL LETTER E u'F' # 0x46 -> LATIN CAPITAL LETTER F u'G' # 0x47 -> LATIN CAPITAL LETTER G u'H' # 0x48 -> LATIN CAPITAL LETTER H u'I' # 0x49 -> LATIN CAPITAL LETTER I u'J' # 0x4A -> LATIN CAPITAL LETTER J u'K' # 0x4B -> LATIN CAPITAL LETTER K u'L' # 0x4C -> LATIN CAPITAL LETTER L u'M' # 0x4D -> LATIN CAPITAL LETTER M u'N' # 0x4E -> LATIN CAPITAL LETTER N u'O' # 0x4F -> LATIN CAPITAL LETTER O u'P' # 0x50 -> LATIN CAPITAL LETTER P u'Q' # 0x51 -> LATIN CAPITAL LETTER Q u'R' # 0x52 -> LATIN CAPITAL LETTER R u'S' # 0x53 -> LATIN CAPITAL LETTER S u'T' # 0x54 -> LATIN CAPITAL LETTER T u'U' # 0x55 -> LATIN CAPITAL LETTER U u'V' # 0x56 -> LATIN CAPITAL LETTER V u'W' # 0x57 -> LATIN CAPITAL LETTER W u'X' # 0x58 -> LATIN CAPITAL LETTER X u'Y' # 0x59 -> LATIN CAPITAL LETTER Y u'Z' # 0x5A -> LATIN CAPITAL LETTER Z u'[' # 0x5B -> LEFT SQUARE BRACKET u'\\' # 0x5C -> REVERSE SOLIDUS u']' # 0x5D -> RIGHT SQUARE BRACKET u'^' # 0x5E -> CIRCUMFLEX ACCENT u'_' # 0x5F -> LOW LINE u'`' # 0x60 -> GRAVE ACCENT u'a' # 0x61 -> LATIN SMALL LETTER A u'b' # 0x62 -> LATIN SMALL LETTER B u'c' # 0x63 -> LATIN SMALL LETTER C u'd' # 0x64 -> LATIN SMALL LETTER D u'e' # 0x65 -> LATIN SMALL LETTER E u'f' # 0x66 -> LATIN SMALL LETTER F u'g' # 0x67 -> LATIN SMALL LETTER G u'h' # 0x68 -> LATIN SMALL LETTER H u'i' # 0x69 -> LATIN SMALL LETTER I u'j' # 0x6A -> LATIN SMALL LETTER J u'k' # 0x6B -> LATIN SMALL LETTER K u'l' # 0x6C -> LATIN SMALL LETTER L u'm' # 0x6D -> LATIN SMALL LETTER M u'n' # 0x6E -> LATIN SMALL LETTER N u'o' # 0x6F -> LATIN SMALL LETTER O u'p' # 0x70 -> LATIN SMALL LETTER P u'q' # 0x71 -> LATIN SMALL LETTER Q u'r' # 0x72 -> LATIN SMALL LETTER R u's' # 0x73 -> LATIN SMALL LETTER S u't' # 0x74 -> LATIN SMALL LETTER T u'u' # 0x75 -> LATIN SMALL LETTER U u'v' # 0x76 -> LATIN SMALL LETTER V u'w' # 0x77 -> LATIN SMALL LETTER W u'x' # 0x78 -> LATIN SMALL LETTER X u'y' # 0x79 -> LATIN SMALL LETTER Y u'z' # 0x7A -> LATIN SMALL LETTER Z u'{' # 0x7B -> LEFT CURLY BRACKET u'|' # 0x7C -> VERTICAL LINE u'}' # 0x7D -> RIGHT CURLY BRACKET u'~' # 0x7E -> TILDE u'\x7f' # 0x7F -> DELETE u'\u2500' # 0x80 -> BOX DRAWINGS LIGHT HORIZONTAL u'\u2502' # 0x81 -> BOX DRAWINGS LIGHT VERTICAL u'\u250c' # 0x82 -> BOX DRAWINGS LIGHT DOWN AND RIGHT u'\u2510' # 0x83 -> BOX DRAWINGS LIGHT DOWN AND LEFT u'\u2514' # 0x84 -> BOX DRAWINGS LIGHT UP AND RIGHT u'\u2518' # 0x85 -> BOX DRAWINGS LIGHT UP AND LEFT u'\u251c' # 0x86 -> BOX DRAWINGS LIGHT VERTICAL AND RIGHT u'\u2524' # 0x87 -> BOX DRAWINGS LIGHT VERTICAL AND LEFT u'\u252c' # 0x88 -> BOX DRAWINGS LIGHT DOWN AND HORIZONTAL u'\u2534' # 0x89 -> BOX DRAWINGS LIGHT UP AND HORIZONTAL u'\u253c' # 0x8A -> BOX DRAWINGS LIGHT VERTICAL AND HORIZONTAL u'\u2580' # 0x8B -> UPPER HALF BLOCK u'\u2584' # 0x8C -> LOWER HALF BLOCK u'\u2588' # 0x8D -> FULL BLOCK u'\u258c' # 0x8E -> LEFT HALF BLOCK u'\u2590' # 0x8F -> RIGHT HALF BLOCK u'\u2591' # 0x90 -> LIGHT SHADE u'\u2592' # 0x91 -> MEDIUM SHADE u'\u2593' # 0x92 -> DARK SHADE u'\u2320' # 0x93 -> TOP HALF INTEGRAL u'\u25a0' # 0x94 -> BLACK SQUARE u'\u2219' # 0x95 -> BULLET OPERATOR u'\u221a' # 0x96 -> SQUARE ROOT u'\u2248' # 0x97 -> ALMOST EQUAL TO u'\u2264' # 0x98 -> LESS-THAN OR EQUAL TO u'\u2265' # 0x99 -> GREATER-THAN OR EQUAL TO u'\xa0' # 0x9A -> NO-BREAK SPACE u'\u2321' # 0x9B -> BOTTOM HALF INTEGRAL u'\xb0' # 0x9C -> DEGREE SIGN u'\xb2' # 0x9D -> SUPERSCRIPT TWO u'\xb7' # 0x9E -> MIDDLE DOT u'\xf7' # 0x9F -> DIVISION SIGN u'\u2550' # 0xA0 -> BOX DRAWINGS DOUBLE HORIZONTAL u'\u2551' # 0xA1 -> BOX DRAWINGS DOUBLE VERTICAL u'\u2552' # 0xA2 -> BOX DRAWINGS DOWN SINGLE AND RIGHT DOUBLE u'\u0451' # 0xA3 -> CYRILLIC SMALL LETTER IO u'\u2553' # 0xA4 -> BOX DRAWINGS DOWN DOUBLE AND RIGHT SINGLE u'\u2554' # 0xA5 -> BOX DRAWINGS DOUBLE DOWN AND RIGHT u'\u2555' # 0xA6 -> BOX DRAWINGS DOWN SINGLE AND LEFT DOUBLE u'\u2556' # 0xA7 -> BOX DRAWINGS DOWN DOUBLE AND LEFT SINGLE u'\u2557' # 0xA8 -> BOX DRAWINGS DOUBLE DOWN AND LEFT u'\u2558' # 0xA9 -> BOX DRAWINGS UP SINGLE AND RIGHT DOUBLE u'\u2559' # 0xAA -> BOX DRAWINGS UP DOUBLE AND RIGHT SINGLE u'\u255a' # 0xAB -> BOX DRAWINGS DOUBLE UP AND RIGHT u'\u255b' # 0xAC -> BOX DRAWINGS UP SINGLE AND LEFT DOUBLE u'\u255c' # 0xAD -> BOX DRAWINGS UP DOUBLE AND LEFT SINGLE u'\u255d' # 0xAE -> BOX DRAWINGS DOUBLE UP AND LEFT u'\u255e' # 0xAF -> BOX DRAWINGS VERTICAL SINGLE AND RIGHT DOUBLE u'\u255f' # 0xB0 -> BOX DRAWINGS VERTICAL DOUBLE AND RIGHT SINGLE u'\u2560' # 0xB1 -> BOX DRAWINGS DOUBLE VERTICAL AND RIGHT u'\u2561' # 0xB2 -> BOX DRAWINGS VERTICAL SINGLE AND LEFT DOUBLE u'\u0401' # 0xB3 -> CYRILLIC CAPITAL LETTER IO u'\u2562' # 0xB4 -> BOX DRAWINGS VERTICAL DOUBLE AND LEFT SINGLE u'\u2563' # 0xB5 -> BOX DRAWINGS DOUBLE VERTICAL AND LEFT u'\u2564' # 0xB6 -> BOX DRAWINGS DOWN SINGLE AND HORIZONTAL DOUBLE u'\u2565' # 0xB7 -> BOX DRAWINGS DOWN DOUBLE AND HORIZONTAL SINGLE u'\u2566' # 0xB8 -> BOX DRAWINGS DOUBLE DOWN AND HORIZONTAL u'\u2567' # 0xB9 -> BOX DRAWINGS UP SINGLE AND HORIZONTAL DOUBLE u'\u2568' # 0xBA -> BOX DRAWINGS UP DOUBLE AND HORIZONTAL SINGLE u'\u2569' # 0xBB -> BOX DRAWINGS DOUBLE UP AND HORIZONTAL u'\u256a' # 0xBC -> BOX DRAWINGS VERTICAL SINGLE AND HORIZONTAL DOUBLE u'\u256b' # 0xBD -> BOX DRAWINGS VERTICAL DOUBLE AND HORIZONTAL SINGLE u'\u256c' # 0xBE -> BOX DRAWINGS DOUBLE VERTICAL AND HORIZONTAL u'\xa9' # 0xBF -> COPYRIGHT SIGN u'\u044e' # 0xC0 -> CYRILLIC SMALL LETTER YU u'\u0430' # 0xC1 -> CYRILLIC SMALL LETTER A u'\u0431' # 0xC2 -> CYRILLIC SMALL LETTER BE u'\u0446' # 0xC3 -> CYRILLIC SMALL LETTER TSE u'\u0434' # 0xC4 -> CYRILLIC SMALL LETTER DE u'\u0435' # 0xC5 -> CYRILLIC SMALL LETTER IE u'\u0444' # 0xC6 -> CYRILLIC SMALL LETTER EF u'\u0433' # 0xC7 -> CYRILLIC SMALL LETTER GHE u'\u0445' # 0xC8 -> CYRILLIC SMALL LETTER HA u'\u0438' # 0xC9 -> CYRILLIC SMALL LETTER I u'\u0439' # 0xCA -> CYRILLIC SMALL LETTER SHORT I u'\u043a' # 0xCB -> CYRILLIC SMALL LETTER KA u'\u043b' # 0xCC -> CYRILLIC SMALL LETTER EL u'\u043c' # 0xCD -> CYRILLIC SMALL LETTER EM u'\u043d' # 0xCE -> CYRILLIC SMALL LETTER EN u'\u043e' # 0xCF -> CYRILLIC SMALL LETTER O u'\u043f' # 0xD0 -> CYRILLIC SMALL LETTER PE u'\u044f' # 0xD1 -> CYRILLIC SMALL LETTER YA u'\u0440' # 0xD2 -> CYRILLIC SMALL LETTER ER u'\u0441' # 0xD3 -> CYRILLIC SMALL LETTER ES u'\u0442' # 0xD4 -> CYRILLIC SMALL LETTER TE u'\u0443' # 0xD5 -> CYRILLIC SMALL LETTER U u'\u0436' # 0xD6 -> CYRILLIC SMALL LETTER ZHE u'\u0432' # 0xD7 -> CYRILLIC SMALL LETTER VE u'\u044c' # 0xD8 -> CYRILLIC SMALL LETTER SOFT SIGN u'\u044b' # 0xD9 -> CYRILLIC SMALL LETTER YERU u'\u0437' # 0xDA -> CYRILLIC SMALL LETTER ZE u'\u0448' # 0xDB -> CYRILLIC SMALL LETTER SHA u'\u044d' # 0xDC -> CYRILLIC SMALL LETTER E u'\u0449' # 0xDD -> CYRILLIC SMALL LETTER SHCHA u'\u0447' # 0xDE -> CYRILLIC SMALL LETTER CHE u'\u044a' # 0xDF -> CYRILLIC SMALL LETTER HARD SIGN u'\u042e' # 0xE0 -> CYRILLIC CAPITAL LETTER YU u'\u0410' # 0xE1 -> CYRILLIC CAPITAL LETTER A u'\u0411' # 0xE2 -> CYRILLIC CAPITAL LETTER BE u'\u0426' # 0xE3 -> CYRILLIC CAPITAL LETTER TSE u'\u0414' # 0xE4 -> CYRILLIC CAPITAL LETTER DE u'\u0415' # 0xE5 -> CYRILLIC CAPITAL LETTER IE u'\u0424' # 0xE6 -> CYRILLIC CAPITAL LETTER EF u'\u0413' # 0xE7 -> CYRILLIC CAPITAL LETTER GHE u'\u0425' # 0xE8 -> CYRILLIC CAPITAL LETTER HA u'\u0418' # 0xE9 -> CYRILLIC CAPITAL LETTER I u'\u0419' # 0xEA -> CYRILLIC CAPITAL LETTER SHORT I u'\u041a' # 0xEB -> CYRILLIC CAPITAL LETTER KA u'\u041b' # 0xEC -> CYRILLIC CAPITAL LETTER EL u'\u041c' # 0xED -> CYRILLIC CAPITAL LETTER EM u'\u041d' # 0xEE -> CYRILLIC CAPITAL LETTER EN u'\u041e' # 0xEF -> CYRILLIC CAPITAL LETTER O u'\u041f' # 0xF0 -> CYRILLIC CAPITAL LETTER PE u'\u042f' # 0xF1 -> CYRILLIC CAPITAL LETTER YA u'\u0420' # 0xF2 -> CYRILLIC CAPITAL LETTER ER u'\u0421' # 0xF3 -> CYRILLIC CAPITAL LETTER ES u'\u0422' # 0xF4 -> CYRILLIC CAPITAL LETTER TE u'\u0423' # 0xF5 -> CYRILLIC CAPITAL LETTER U u'\u0416' # 0xF6 -> CYRILLIC CAPITAL LETTER ZHE u'\u0412' # 0xF7 -> CYRILLIC CAPITAL LETTER VE u'\u042c' # 0xF8 -> CYRILLIC CAPITAL LETTER SOFT SIGN u'\u042b' # 0xF9 -> CYRILLIC CAPITAL LETTER YERU u'\u0417' # 0xFA -> CYRILLIC CAPITAL LETTER ZE u'\u0428' # 0xFB -> CYRILLIC CAPITAL LETTER SHA u'\u042d' # 0xFC -> CYRILLIC CAPITAL LETTER E u'\u0429' # 0xFD -> CYRILLIC CAPITAL LETTER SHCHA u'\u0427' # 0xFE -> CYRILLIC CAPITAL LETTER CHE u'\u042a' # 0xFF -> CYRILLIC CAPITAL LETTER HARD SIGN ) ### Encoding table encoding_table=codecs.charmap_build(decoding_table)
.
240 Items
Change directory
Remove directory
Rename directory
..
442 Items
Change directory
Remove directory
Rename directory
__init__.py
5.56 KB
Edit
Delete
Copy
Move
Remame
__init__.pyc
4.27 KB
Edit
Delete
Copy
Move
Remame
aliases.py
14.5 KB
Edit
Delete
Copy
Move
Remame
aliases.pyc
8.56 KB
Edit
Delete
Copy
Move
Remame
ascii.py
1.22 KB
Edit
Delete
Copy
Move
Remame
ascii.pyc
2.21 KB
Edit
Delete
Copy
Move
Remame
base64_codec.py
2.32 KB
Edit
Delete
Copy
Move
Remame
base64_codec.pyc
3.75 KB
Edit
Delete
Copy
Move
Remame
big5.py
1 KB
Edit
Delete
Copy
Move
Remame
big5.pyc
1.71 KB
Edit
Delete
Copy
Move
Remame
big5hkscs.py
1.01 KB
Edit
Delete
Copy
Move
Remame
big5hkscs.pyc
1.75 KB
Edit
Delete
Copy
Move
Remame
bz2_codec.py
2.96 KB
Edit
Delete
Copy
Move
Remame
bz2_codec.pyc
4.62 KB
Edit
Delete
Copy
Move
Remame
charmap.py
2.04 KB
Edit
Delete
Copy
Move
Remame
charmap.pyc
3.39 KB
Edit
Delete
Copy
Move
Remame
cp037.py
13.06 KB
Edit
Delete
Copy
Move
Remame
cp037.pyc
2.77 KB
Edit
Delete
Copy
Move
Remame
cp1006.py
13.5 KB
Edit
Delete
Copy
Move
Remame
cp1006.pyc
2.85 KB
Edit
Delete
Copy
Move
Remame
cp1026.py
13.06 KB
Edit
Delete
Copy
Move
Remame
cp1026.pyc
2.78 KB
Edit
Delete
Copy
Move
Remame
cp1140.py
13.05 KB
Edit
Delete
Copy
Move
Remame
cp1140.pyc
2.77 KB
Edit
Delete
Copy
Move
Remame
cp1250.py
13.62 KB
Edit
Delete
Copy
Move
Remame
cp1250.pyc
2.81 KB
Edit
Delete
Copy
Move
Remame
cp1251.py
13.3 KB
Edit
Delete
Copy
Move
Remame
cp1251.pyc
2.8 KB
Edit
Delete
Copy
Move
Remame
cp1252.py
13.44 KB
Edit
Delete
Copy
Move
Remame
cp1252.pyc
2.81 KB
Edit
Delete
Copy
Move
Remame
cp1253.py
13.04 KB
Edit
Delete
Copy
Move
Remame
cp1253.pyc
2.82 KB
Edit
Delete
Copy
Move
Remame
cp1254.py
13.44 KB
Edit
Delete
Copy
Move
Remame
cp1254.pyc
2.81 KB
Edit
Delete
Copy
Move
Remame
cp1255.py
12.42 KB
Edit
Delete
Copy
Move
Remame
cp1255.pyc
2.83 KB
Edit
Delete
Copy
Move
Remame
cp1256.py
12.76 KB
Edit
Delete
Copy
Move
Remame
cp1256.pyc
2.81 KB
Edit
Delete
Copy
Move
Remame
cp1257.py
13.31 KB
Edit
Delete
Copy
Move
Remame
cp1257.pyc
2.81 KB
Edit
Delete
Copy
Move
Remame
cp1258.py
13.3 KB
Edit
Delete
Copy
Move
Remame
cp1258.pyc
2.81 KB
Edit
Delete
Copy
Move
Remame
cp424.py
12.02 KB
Edit
Delete
Copy
Move
Remame
cp424.pyc
2.8 KB
Edit
Delete
Copy
Move
Remame
cp437.py
34 KB
Edit
Delete
Copy
Move
Remame
cp437.pyc
7.88 KB
Edit
Delete
Copy
Move
Remame
cp500.py
13.06 KB
Edit
Delete
Copy
Move
Remame
cp500.pyc
2.77 KB
Edit
Delete
Copy
Move
Remame
cp720.py
13.37 KB
Edit
Delete
Copy
Move
Remame
cp720.pyc
2.87 KB
Edit
Delete
Copy
Move
Remame
cp737.py
34.12 KB
Edit
Delete
Copy
Move
Remame
cp737.pyc
8.11 KB
Edit
Delete
Copy
Move
Remame
cp775.py
33.92 KB
Edit
Delete
Copy
Move
Remame
cp775.pyc
7.9 KB
Edit
Delete
Copy
Move
Remame
cp850.py
33.56 KB
Edit
Delete
Copy
Move
Remame
cp850.pyc
7.64 KB
Edit
Delete
Copy
Move
Remame
cp852.py
34.43 KB
Edit
Delete
Copy
Move
Remame
cp852.pyc
7.9 KB
Edit
Delete
Copy
Move
Remame
cp855.py
33.31 KB
Edit
Delete
Copy
Move
Remame
cp855.pyc
8.08 KB
Edit
Delete
Copy
Move
Remame
cp856.py
12.38 KB
Edit
Delete
Copy
Move
Remame
cp856.pyc
2.83 KB
Edit
Delete
Copy
Move
Remame
cp857.py
33.36 KB
Edit
Delete
Copy
Move
Remame
cp857.pyc
7.63 KB
Edit
Delete
Copy
Move
Remame
cp858.py
33.47 KB
Edit
Delete
Copy
Move
Remame
cp858.pyc
7.61 KB
Edit
Delete
Copy
Move
Remame
cp860.py
34.12 KB
Edit
Delete
Copy
Move
Remame
cp860.pyc
7.87 KB
Edit
Delete
Copy
Move
Remame
cp861.py
34.07 KB
Edit
Delete
Copy
Move
Remame
cp861.pyc
7.88 KB
Edit
Delete
Copy
Move
Remame
cp862.py
32.84 KB
Edit
Delete
Copy
Move
Remame
cp862.pyc
8.01 KB
Edit
Delete
Copy
Move
Remame
cp863.py
33.7 KB
Edit
Delete
Copy
Move
Remame
cp863.pyc
7.88 KB
Edit
Delete
Copy
Move
Remame
cp864.py
33.12 KB
Edit
Delete
Copy
Move
Remame
cp864.pyc
8 KB
Edit
Delete
Copy
Move
Remame
cp865.py
34.06 KB
Edit
Delete
Copy
Move
Remame
cp865.pyc
7.88 KB
Edit
Delete
Copy
Move
Remame
cp866.py
33.84 KB
Edit
Delete
Copy
Move
Remame
cp866.pyc
8.11 KB
Edit
Delete
Copy
Move
Remame
cp869.py
32.44 KB
Edit
Delete
Copy
Move
Remame
cp869.pyc
7.92 KB
Edit
Delete
Copy
Move
Remame
cp874.py
12.55 KB
Edit
Delete
Copy
Move
Remame
cp874.pyc
2.9 KB
Edit
Delete
Copy
Move
Remame
cp875.py
12.8 KB
Edit
Delete
Copy
Move
Remame
cp875.pyc
2.77 KB
Edit
Delete
Copy
Move
Remame
cp932.py
1 KB
Edit
Delete
Copy
Move
Remame
cp932.pyc
1.72 KB
Edit
Delete
Copy
Move
Remame
cp949.py
1 KB
Edit
Delete
Copy
Move
Remame
cp949.pyc
1.72 KB
Edit
Delete
Copy
Move
Remame
cp950.py
1 KB
Edit
Delete
Copy
Move
Remame
cp950.pyc
1.72 KB
Edit
Delete
Copy
Move
Remame
euc_jis_2004.py
1.03 KB
Edit
Delete
Copy
Move
Remame
euc_jis_2004.pyc
1.78 KB
Edit
Delete
Copy
Move
Remame
euc_jisx0213.py
1.03 KB
Edit
Delete
Copy
Move
Remame
euc_jisx0213.pyc
1.78 KB
Edit
Delete
Copy
Move
Remame
euc_jp.py
1 KB
Edit
Delete
Copy
Move
Remame
euc_jp.pyc
1.73 KB
Edit
Delete
Copy
Move
Remame
euc_kr.py
1 KB
Edit
Delete
Copy
Move
Remame
euc_kr.pyc
1.73 KB
Edit
Delete
Copy
Move
Remame
gb18030.py
1.01 KB
Edit
Delete
Copy
Move
Remame
gb18030.pyc
1.74 KB
Edit
Delete
Copy
Move
Remame
gb2312.py
1 KB
Edit
Delete
Copy
Move
Remame
gb2312.pyc
1.73 KB
Edit
Delete
Copy
Move
Remame
gbk.py
0.99 KB
Edit
Delete
Copy
Move
Remame
gbk.pyc
1.71 KB
Edit
Delete
Copy
Move
Remame
hex_codec.py
2.29 KB
Edit
Delete
Copy
Move
Remame
hex_codec.pyc
3.7 KB
Edit
Delete
Copy
Move
Remame
hp_roman8.py
7.22 KB
Edit
Delete
Copy
Move
Remame
hp_roman8.pyc
4.02 KB
Edit
Delete
Copy
Move
Remame
hz.py
0.99 KB
Edit
Delete
Copy
Move
Remame
hz.pyc
1.7 KB
Edit
Delete
Copy
Move
Remame
idna.py
8.28 KB
Edit
Delete
Copy
Move
Remame
idna.pyc
6.23 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp.py
1.03 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp.pyc
1.77 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp_1.py
1.04 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp_1.pyc
1.78 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp_2.py
1.04 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp_2.pyc
1.78 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp_2004.py
1.05 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp_2004.pyc
1.81 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp_3.py
1.04 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp_3.pyc
1.78 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp_ext.py
1.04 KB
Edit
Delete
Copy
Move
Remame
iso2022_jp_ext.pyc
1.8 KB
Edit
Delete
Copy
Move
Remame
iso2022_kr.py
1.03 KB
Edit
Delete
Copy
Move
Remame
iso2022_kr.pyc
1.77 KB
Edit
Delete
Copy
Move
Remame
iso8859_1.py
13.12 KB
Edit
Delete
Copy
Move
Remame
iso8859_1.pyc
2.81 KB
Edit
Delete
Copy
Move
Remame
iso8859_10.py
13.52 KB
Edit
Delete
Copy
Move
Remame
iso8859_10.pyc
2.82 KB
Edit
Delete
Copy
Move
Remame
iso8859_11.py
12.3 KB
Edit
Delete
Copy
Move
Remame
iso8859_11.pyc
2.92 KB
Edit
Delete
Copy
Move
Remame
iso8859_13.py
13.21 KB
Edit
Delete
Copy
Move
Remame
iso8859_13.pyc
2.83 KB
Edit
Delete
Copy
Move
Remame
iso8859_14.py
13.58 KB
Edit
Delete
Copy
Move
Remame
iso8859_14.pyc
2.84 KB
Edit
Delete
Copy
Move
Remame
iso8859_15.py
13.15 KB
Edit
Delete
Copy
Move
Remame
iso8859_15.pyc
2.82 KB
Edit
Delete
Copy
Move
Remame
iso8859_16.py
13.49 KB
Edit
Delete
Copy
Move
Remame
iso8859_16.pyc
2.83 KB
Edit
Delete
Copy
Move
Remame
iso8859_2.py
13.34 KB
Edit
Delete
Copy
Move
Remame
iso8859_2.pyc
2.81 KB
Edit
Delete
Copy
Move
Remame
iso8859_3.py
13.03 KB
Edit
Delete
Copy
Move
Remame
iso8859_3.pyc
2.82 KB
Edit
Delete
Copy
Move
Remame
iso8859_4.py
13.31 KB
Edit
Delete
Copy
Move
Remame
iso8859_4.pyc
2.81 KB
Edit
Delete
Copy
Move
Remame
iso8859_5.py
12.96 KB
Edit
Delete
Copy
Move
Remame
iso8859_5.pyc
2.81 KB
Edit
Delete
Copy
Move
Remame
iso8859_6.py
10.83 KB
Edit
Delete
Copy
Move
Remame
iso8859_6.pyc
2.85 KB
Edit
Delete
Copy
Move
Remame
iso8859_7.py
12.79 KB
Edit
Delete
Copy
Move
Remame
iso8859_7.pyc
2.82 KB
Edit
Delete
Copy
Move
Remame
iso8859_8.py
11.03 KB
Edit
Delete
Copy
Move
Remame
iso8859_8.pyc
2.85 KB
Edit
Delete
Copy
Move
Remame
iso8859_9.py
13.1 KB
Edit
Delete
Copy
Move
Remame
iso8859_9.pyc
2.81 KB
Edit
Delete
Copy
Move
Remame
johab.py
1 KB
Edit
Delete
Copy
Move
Remame
johab.pyc
1.72 KB
Edit
Delete
Copy
Move
Remame
koi8_r.py
13.71 KB
Edit
Delete
Copy
Move
Remame
koi8_r.pyc
2.83 KB
Edit
Delete
Copy
Move
Remame
koi8_u.py
13.69 KB
Edit
Delete
Copy
Move
Remame
koi8_u.pyc
2.82 KB
Edit
Delete
Copy
Move
Remame
latin_1.py
1.23 KB
Edit
Delete
Copy
Move
Remame
latin_1.pyc
2.24 KB
Edit
Delete
Copy
Move
Remame
mac_arabic.py
35.86 KB
Edit
Delete
Copy
Move
Remame
mac_arabic.pyc
7.83 KB
Edit
Delete
Copy
Move
Remame
mac_centeuro.py
14.02 KB
Edit
Delete
Copy
Move
Remame
mac_centeuro.pyc
2.88 KB
Edit
Delete
Copy
Move
Remame
mac_croatian.py
13.56 KB
Edit
Delete
Copy
Move
Remame
mac_croatian.pyc
2.88 KB
Edit
Delete
Copy
Move
Remame
mac_cyrillic.py
13.39 KB
Edit
Delete
Copy
Move
Remame
mac_cyrillic.pyc
2.87 KB
Edit
Delete
Copy
Move
Remame
mac_farsi.py
15.06 KB
Edit
Delete
Copy
Move
Remame
mac_farsi.pyc
2.79 KB
Edit
Delete
Copy
Move
Remame
mac_greek.py
13.65 KB
Edit
Delete
Copy
Move
Remame
mac_greek.pyc
2.83 KB
Edit
Delete
Copy
Move
Remame
mac_iceland.py
13.43 KB
Edit
Delete
Copy
Move
Remame
mac_iceland.pyc
2.87 KB
Edit
Delete
Copy
Move
Remame
mac_latin2.py
8.36 KB
Edit
Delete
Copy
Move
Remame
mac_latin2.pyc
4.8 KB
Edit
Delete
Copy
Move
Remame
mac_roman.py
13.41 KB
Edit
Delete
Copy
Move
Remame
mac_roman.pyc
2.85 KB
Edit
Delete
Copy
Move
Remame
mac_romanian.py
13.59 KB
Edit
Delete
Copy
Move
Remame
mac_romanian.pyc
2.88 KB
Edit
Delete
Copy
Move
Remame
mac_turkish.py
13.45 KB
Edit
Delete
Copy
Move
Remame
mac_turkish.pyc
2.87 KB
Edit
Delete
Copy
Move
Remame
mbcs.py
1.18 KB
Edit
Delete
Copy
Move
Remame
mbcs.pyc
1.98 KB
Edit
Delete
Copy
Move
Remame
palmos.py
2.87 KB
Edit
Delete
Copy
Move
Remame
palmos.pyc
3 KB
Edit
Delete
Copy
Move
Remame
ptcp154.py
8.74 KB
Edit
Delete
Copy
Move
Remame
ptcp154.pyc
4.78 KB
Edit
Delete
Copy
Move
Remame
punycode.py
6.65 KB
Edit
Delete
Copy
Move
Remame
punycode.pyc
7.76 KB
Edit
Delete
Copy
Move
Remame
quopri_codec.py
2.14 KB
Edit
Delete
Copy
Move
Remame
quopri_codec.pyc
3.57 KB
Edit
Delete
Copy
Move
Remame
raw_unicode_escape.py
1.18 KB
Edit
Delete
Copy
Move
Remame
raw_unicode_escape.pyc
2.16 KB
Edit
Delete
Copy
Move
Remame
rot_13.py
2.55 KB
Edit
Delete
Copy
Move
Remame
rot_13.pyc
3.58 KB
Edit
Delete
Copy
Move
Remame
shift_jis.py
1.01 KB
Edit
Delete
Copy
Move
Remame
shift_jis.pyc
1.75 KB
Edit
Delete
Copy
Move
Remame
shift_jis_2004.py
1.03 KB
Edit
Delete
Copy
Move
Remame
shift_jis_2004.pyc
1.79 KB
Edit
Delete
Copy
Move
Remame
shift_jisx0213.py
1.03 KB
Edit
Delete
Copy
Move
Remame
shift_jisx0213.pyc
1.79 KB
Edit
Delete
Copy
Move
Remame
string_escape.py
0.93 KB
Edit
Delete
Copy
Move
Remame
string_escape.pyc
2.02 KB
Edit
Delete
Copy
Move
Remame
tis_620.py
12.26 KB
Edit
Delete
Copy
Move
Remame
tis_620.pyc
2.88 KB
Edit
Delete
Copy
Move
Remame
undefined.py
1.27 KB
Edit
Delete
Copy
Move
Remame
undefined.pyc
2.54 KB
Edit
Delete
Copy
Move
Remame
unicode_escape.py
1.16 KB
Edit
Delete
Copy
Move
Remame
unicode_escape.pyc
2.11 KB
Edit
Delete
Copy
Move
Remame
unicode_internal.py
1.17 KB
Edit
Delete
Copy
Move
Remame
unicode_internal.pyc
2.13 KB
Edit
Delete
Copy
Move
Remame
utf_16.py
3.89 KB
Edit
Delete
Copy
Move
Remame
utf_16.pyc
5.05 KB
Edit
Delete
Copy
Move
Remame
utf_16_be.py
1.01 KB
Edit
Delete
Copy
Move
Remame
utf_16_be.pyc
1.95 KB
Edit
Delete
Copy
Move
Remame
utf_16_le.py
1.01 KB
Edit
Delete
Copy
Move
Remame
utf_16_le.pyc
1.95 KB
Edit
Delete
Copy
Move
Remame
utf_32.py
5.01 KB
Edit
Delete
Copy
Move
Remame
utf_32.pyc
5.6 KB
Edit
Delete
Copy
Move
Remame
utf_32_be.py
0.91 KB
Edit
Delete
Copy
Move
Remame
utf_32_be.pyc
1.85 KB
Edit
Delete
Copy
Move
Remame
utf_32_le.py
0.91 KB
Edit
Delete
Copy
Move
Remame
utf_32_le.pyc
1.85 KB
Edit
Delete
Copy
Move
Remame
utf_7.py
0.92 KB
Edit
Delete
Copy
Move
Remame
utf_7.pyc
1.85 KB
Edit
Delete
Copy
Move
Remame
utf_8.py
0.98 KB
Edit
Delete
Copy
Move
Remame
utf_8.pyc
1.9 KB
Edit
Delete
Copy
Move
Remame
utf_8_sig.py
3.6 KB
Edit
Delete
Copy
Move
Remame
utf_8_sig.pyc
4.87 KB
Edit
Delete
Copy
Move
Remame
uu_codec.py
3.68 KB
Edit
Delete
Copy
Move
Remame
uu_codec.pyc
4.8 KB
Edit
Delete
Copy
Move
Remame
zlib_codec.py
2.98 KB
Edit
Delete
Copy
Move
Remame
zlib_codec.pyc
4.54 KB
Edit
Delete
Copy
Move
Remame