diff options
Diffstat (limited to 'third_party/python/idna/idna/compat.py')
-rw-r--r-- | third_party/python/idna/idna/compat.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/python/idna/idna/compat.py b/third_party/python/idna/idna/compat.py new file mode 100644 index 0000000000..4d47f336db --- /dev/null +++ b/third_party/python/idna/idna/compat.py @@ -0,0 +1,12 @@ +from .core import * +from .codec import * + +def ToASCII(label): + return encode(label) + +def ToUnicode(label): + return decode(label) + +def nameprep(s): + raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol") + |