From 8b3fbc0c7d01239639e0516b6e1291a483a01c6e Mon Sep 17 00:00:00 2001 From: Riccardo Magliocchetti Date: Sun, 5 Nov 2017 12:08:17 +0100 Subject: [PATCH] unicodedata: add dummy normalize implementation --- unicodedata/unicodedata.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/unicodedata/unicodedata.py b/unicodedata/unicodedata.py index 6f041e40..2b6cfd7e 100644 --- a/unicodedata/unicodedata.py +++ b/unicodedata/unicodedata.py @@ -1,2 +1,6 @@ def east_asian_width(c): return 1 + + +def normalize(form, unistr): + return unistr