From 8bb20f3ce013d9aeef234648e0c0dc75a765d4a1 Mon Sep 17 00:00:00 2001 From: Tomaz Solc Date: Sun, 20 Dec 2020 12:14:38 +0100 Subject: 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. --- unidecode/x07e.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'unidecode/x07e.py') 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 -- cgit v1.2.1