Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

compat.py 321B

12345678910111213
  1. from .core import *
  2. from .codec import *
  3. from typing import Any, Union
  4. def ToASCII(label: str) -> bytes:
  5. return encode(label)
  6. def ToUnicode(label: Union[bytes, bytearray]) -> str:
  7. return decode(label)
  8. def nameprep(s: Any) -> None:
  9. raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol')