diff options
| author | Tomaz Solc <tomaz.solc@tablix.org> | 2020-12-20 12:14:38 +0100 |
|---|---|---|
| committer | Tomaz Solc <tomaz.solc@tablix.org> | 2020-12-20 12:19:52 +0100 |
| commit | 8bb20f3ce013d9aeef234648e0c0dc75a765d4a1 (patch) | |
| tree | 781d12a0f51374e5d31402b1ef6e95edc0bbd370 /unidecode/x082.py | |
| parent | 3529535286cabf4f29eb0074a59c7d07eb975d32 (diff) | |
| download | unidecode-8bb20f3ce013d9aeef234648e0c0dc75a765d4a1.tar.gz | |
Mass replace '[?] ' -> None
To make use of the new 'errors' argument.
It seems that '[?] ' (with space) was used for code points that were assigned,
but the replacement was not known.
Diffstat (limited to 'unidecode/x082.py')
| -rw-r--r-- | unidecode/x082.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/unidecode/x082.py b/unidecode/x082.py index daea2e2..890f63e 100644 --- a/unidecode/x082.py +++ b/unidecode/x082.py @@ -35,7 +35,7 @@ data = ( 'Gang ', # 0x21 'Shan ', # 0x22 'Yi ', # 0x23 -'[?] ', # 0x24 +None, # 0x24 'Pa ', # 0x25 'Tai ', # 0x26 'Fan ', # 0x27 @@ -62,7 +62,7 @@ data = ( 'Hong ', # 0x3c 'Pang ', # 0x3d 'Xi ', # 0x3e -'[?] ', # 0x3f +None, # 0x3f 'Fu ', # 0x40 'Zao ', # 0x41 'Feng ', # 0x42 @@ -71,7 +71,7 @@ data = ( 'Yu ', # 0x45 'Lang ', # 0x46 'Ting ', # 0x47 -'[?] ', # 0x48 +None, # 0x48 'Wei ', # 0x49 'Bo ', # 0x4a 'Meng ', # 0x4b @@ -83,7 +83,7 @@ data = ( 'Bian ', # 0x51 'Mao ', # 0x52 'Die ', # 0x53 -'[?] ', # 0x54 +None, # 0x54 'Bang ', # 0x55 'Cha ', # 0x56 'Yi ', # 0x57 |
