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/x079.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/x079.py')
| -rw-r--r-- | unidecode/x079.py | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/unidecode/x079.py b/unidecode/x079.py index ed1c514..130ed60 100644 --- a/unidecode/x079.py +++ b/unidecode/x079.py @@ -1,7 +1,7 @@ data = ( 'Tani ', # 0x00 'Jiao ', # 0x01 -'[?] ', # 0x02 +None, # 0x02 'Zhang ', # 0x03 'Qiao ', # 0x04 'Dun ', # 0x05 @@ -32,8 +32,8 @@ data = ( 'Meng ', # 0x1e 'Pao ', # 0x1f 'Ci ', # 0x20 -'[?] ', # 0x21 -'[?] ', # 0x22 +None, # 0x21 +None, # 0x22 'Mie ', # 0x23 'Ca ', # 0x24 'Xian ', # 0x25 @@ -76,7 +76,7 @@ data = ( 'Beng ', # 0x4a 'Dui ', # 0x4b 'Zhong ', # 0x4c -'[?] ', # 0x4d +None, # 0x4d 'Yi ', # 0x4e 'Shi ', # 0x4f 'You ', # 0x50 @@ -152,7 +152,7 @@ data = ( 'Mei ', # 0x96 'Si ', # 0x97 'Di ', # 0x98 -'[?] ', # 0x99 +None, # 0x99 'Zhuo ', # 0x9a 'Zhen ', # 0x9b 'Yong ', # 0x9c @@ -162,7 +162,7 @@ data = ( 'Si ', # 0xa0 'Ma ', # 0xa1 'Ta ', # 0xa2 -'[?] ', # 0xa3 +None, # 0xa3 'Xuan ', # 0xa4 'Qi ', # 0xa5 'Yu ', # 0xa6 |
