golden hour
/lib/python3.9/site-packages/pip/_vendor/idna
⬆️ Go Up
Upload
File/Folder
Size
Actions
__init__.py
849 B
Del
OK
__pycache__
-
Del
OK
codec.py
3.37 KB
Del
OK
compat.py
360 B
Del
OK
core.py
12.53 KB
Del
OK
idnadata.py
41.36 KB
Del
OK
intranges.py
1.89 KB
Del
OK
package_data.py
21 B
Del
OK
uts46data.py
197.12 KB
Del
OK
Edit: compat.py
from .core import * from .codec import * from typing import Any, Union def ToASCII(label): # type: (str) -> bytes return encode(label) def ToUnicode(label): # type: (Union[bytes, bytearray]) -> str return decode(label) def nameprep(s): # type: (Any) -> None raise NotImplementedError('IDNA 2008 does not utilise nameprep protocol')
Save