reach-vb's picture
reach-vb HF staff
4799229696a145898acfae86a49f8b88b6858651674b0f1d8137083b7feba481
803812e
raw
history blame
No virus
321 Bytes
from .core import *
from .codec import *
from typing import Any, Union
def ToASCII(label: str) -> bytes:
return encode(label)
def ToUnicode(label: Union[bytes, bytearray]) -> str:
return decode(label)
def nameprep(s: Any) -> None:
raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol')