mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
Rip out all the u"..." literals and calls to unicode().
This commit is contained in:
parent
572dbf8f13
commit
ef87d6ed94
200 changed files with 18074 additions and 18074 deletions
|
@ -35,10 +35,10 @@ def getregentry():
|
|||
|
||||
decoding_map = codecs.make_identity_dict(range(256))
|
||||
decoding_map.update({
|
||||
0x78: u"abc", # 1-n decoding mapping
|
||||
0x78: "abc", # 1-n decoding mapping
|
||||
"abc": 0x0078,# 1-n encoding mapping
|
||||
0x01: None, # decoding mapping to <undefined>
|
||||
0x79: u"", # decoding mapping to <remove character>
|
||||
0x79: "", # decoding mapping to <remove character>
|
||||
})
|
||||
|
||||
### Encoding Map
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue