Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.112
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
src /
Python-3.10.14 /
PC /
layout /
support /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
0
B
-rw-r--r--
2024-03-19 22:46
appxmanifest.py
17.49
KB
-rw-r--r--
2024-03-19 22:46
catalog.py
834
B
-rw-r--r--
2024-03-19 22:46
constants.py
1.08
KB
-rw-r--r--
2024-03-19 22:46
filesets.py
2.56
KB
-rw-r--r--
2024-03-19 22:46
logging.py
1.93
KB
-rw-r--r--
2024-03-19 22:46
nuspec.py
2.39
KB
-rw-r--r--
2024-03-19 22:46
options.py
3.27
KB
-rw-r--r--
2024-03-19 22:46
pip.py
2.19
KB
-rw-r--r--
2024-03-19 22:46
props.py
4.14
KB
-rw-r--r--
2024-03-19 22:46
python.props
3.06
KB
-rw-r--r--
2024-03-19 22:46
Save
Rename
""" Constants for generating the layout. """ __author__ = "Steve Dower <steve.dower@python.org>" __version__ = "3.8" import os import re import struct import sys def _unpack_hexversion(): try: hexversion = int(os.getenv("PYTHON_HEXVERSION"), 16) except (TypeError, ValueError): hexversion = sys.hexversion return struct.pack(">i", hexversion) def _get_suffix(field4): name = {0xA0: "a", 0xB0: "b", 0xC0: "rc"}.get(field4 & 0xF0, "") if name: serial = field4 & 0x0F return f"{name}{serial}" return "" VER_MAJOR, VER_MINOR, VER_MICRO, VER_FIELD4 = _unpack_hexversion() VER_SUFFIX = _get_suffix(VER_FIELD4) VER_FIELD3 = VER_MICRO << 8 | VER_FIELD4 VER_DOT = "{}.{}".format(VER_MAJOR, VER_MINOR) PYTHON_DLL_NAME = "python{}{}.dll".format(VER_MAJOR, VER_MINOR) PYTHON_STABLE_DLL_NAME = "python{}.dll".format(VER_MAJOR) PYTHON_ZIP_NAME = "python{}{}.zip".format(VER_MAJOR, VER_MINOR) PYTHON_PTH_NAME = "python{}{}._pth".format(VER_MAJOR, VER_MINOR) PYTHON_CHM_NAME = "python{}{}{}{}.chm".format( VER_MAJOR, VER_MINOR, VER_MICRO, VER_SUFFIX )