added new gui

This commit is contained in:
Kalam :p
2020-07-15 17:41:07 +01:00
parent 01729eb006
commit b0c8cb4083
102 changed files with 18768 additions and 143 deletions

12
idna/compat.py Normal file
View File

@@ -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")