mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Moved the encoding map building logic from the individual mapping
codec files to codecs.py and added logic so that multi mappings in the decoding maps now result in mappings to None (undefined mapping) in the encoding maps.
This commit is contained in:
parent
5a4718e1ed
commit
716cf91839
55 changed files with 75 additions and 162 deletions
|
@ -278,6 +278,4 @@ decoding_map.update({
|
|||
|
||||
### Encoding Map
|
||||
|
||||
encoding_map = {}
|
||||
for k,v in decoding_map.items():
|
||||
encoding_map[v] = k
|
||||
encoding_map = codecs.make_encoding_map(decoding_map)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue