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/x07e.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/x07e.py')
| -rw-r--r-- | unidecode/x07e.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unidecode/x07e.py b/unidecode/x07e.py index 131ef35..e302f2a 100644 --- a/unidecode/x07e.py +++ b/unidecode/x07e.py @@ -235,7 +235,7 @@ data = ( 'Ji ', # 0xe9 'Xu ', # 0xea 'Ling ', # 0xeb -'[?] ', # 0xec +None, # 0xec 'Xu ', # 0xed 'Qi ', # 0xee 'Fei ', # 0xef |
