init venv & began server connection & also debug menu

This commit is contained in:
2025-09-06 01:45:47 +03:00
parent 1b3d02f005
commit 3aecfd08bd
1208 changed files with 232850 additions and 3 deletions

View File

@@ -0,0 +1,15 @@
from typing import Any, Union
from .core import decode, encode
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")