您最多选择25个主题
主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
|
- 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")
|