選択できるのは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")