diff options
Diffstat (limited to 'Lib/stringprep.py')
-rw-r--r-- | Lib/stringprep.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/stringprep.py b/Lib/stringprep.py index f997a67..225aedb 100644 --- a/Lib/stringprep.py +++ b/Lib/stringprep.py @@ -5,7 +5,7 @@ There are two kinds of tables: sets, for which a member test is provided, and mappings, for which a mapping function is provided. """ -import unicodedata +from unicodedata import db_3_2_0 as unicodedata assert unicodedata.unidata_version == '3.2.0' |