OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
genai
/
venv
/
lib
/
python3.6
/
site-packages
/
idna
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/09/2024 07:00:17 AM
rwxr-xr-x
📄
__init__.py
849 bytes
05/09/2024 07:00:16 AM
rw-r--r--
📁
__pycache__
-
05/09/2024 07:00:16 AM
rwxr-xr-x
📄
codec.py
3.35 KB
05/09/2024 07:00:16 AM
rw-r--r--
📄
compat.py
321 bytes
05/09/2024 07:00:16 AM
rw-r--r--
📄
core.py
12.37 KB
05/09/2024 07:00:16 AM
rw-r--r--
📄
idnadata.py
76.48 KB
05/09/2024 07:00:16 AM
rw-r--r--
📄
intranges.py
1.84 KB
05/09/2024 07:00:16 AM
rw-r--r--
📄
package_data.py
21 bytes
05/09/2024 07:00:16 AM
rw-r--r--
📄
py.typed
0 bytes
05/09/2024 07:00:16 AM
rw-r--r--
📄
uts46data.py
201.66 KB
05/09/2024 07:00:16 AM
rw-r--r--
Editing: compat.py
Close
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')