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

13 行
232B

  1. from .core import *
  2. from .codec import *
  3. def ToASCII(label):
  4. return encode(label)
  5. def ToUnicode(label):
  6. return decode(label)
  7. def nameprep(s):
  8. raise NotImplementedError("IDNA 2008 does not utilise nameprep protocol")