Linux biogene 3.16.0-11-amd64 #1 SMP Debian 3.16.84-1 (2020-06-09) x86_64
Apache
: 46.101.124.208 | : 18.222.99.206
Cant Read [ /etc/named.conf ]
5.6.40-0+deb8u12
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
lib /
python2.7 /
dist-packages /
pip /
[ HOME SHELL ]
Name
Size
Permission
Action
backwardcompat
[ DIR ]
drwxr-xr-x
commands
[ DIR ]
drwxr-xr-x
vcs
[ DIR ]
drwxr-xr-x
__init__.py
11.79
KB
-rw-r--r--
__init__.pyc
9.22
KB
-rw-r--r--
__main__.py
116
B
-rw-r--r--
__main__.pyc
301
B
-rw-r--r--
basecommand.py
6.42
KB
-rw-r--r--
basecommand.pyc
6.07
KB
-rw-r--r--
baseparser.py
7.93
KB
-rw-r--r--
baseparser.pyc
9.48
KB
-rw-r--r--
cmdoptions.py
9.11
KB
-rw-r--r--
cmdoptions.pyc
7.77
KB
-rw-r--r--
download.py
21.96
KB
-rw-r--r--
download.pyc
19.54
KB
-rw-r--r--
exceptions.py
1.06
KB
-rw-r--r--
exceptions.pyc
2.87
KB
-rw-r--r--
index.py
39.43
KB
-rw-r--r--
index.pyc
31.87
KB
-rw-r--r--
locations.py
6.06
KB
-rw-r--r--
locations.pyc
5.33
KB
-rw-r--r--
log.py
9.22
KB
-rw-r--r--
log.pyc
9.39
KB
-rw-r--r--
pep425tags.py
2.9
KB
-rw-r--r--
pep425tags.pyc
3.08
KB
-rw-r--r--
req.py
81.82
KB
-rw-r--r--
req.pyc
58.75
KB
-rw-r--r--
runner.py
431
B
-rw-r--r--
runner.pyc
599
B
-rw-r--r--
status_codes.py
116
B
-rw-r--r--
status_codes.pyc
330
B
-rw-r--r--
util.py
25.21
KB
-rw-r--r--
util.pyc
26.64
KB
-rw-r--r--
wheel.py
20.07
KB
-rw-r--r--
wheel.pyc
17.45
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : pep425tags.py
"""Generate and work with PEP 425 Compatibility Tags.""" import sys import warnings try: import sysconfig except ImportError: # pragma nocover # Python < 2.7 import distutils.sysconfig as sysconfig import distutils.util def get_abbr_impl(): """Return abbreviated implementation name.""" if hasattr(sys, 'pypy_version_info'): pyimpl = 'pp' elif sys.platform.startswith('java'): pyimpl = 'jy' elif sys.platform == 'cli': pyimpl = 'ip' else: pyimpl = 'cp' return pyimpl def get_impl_ver(): """Return implementation version.""" return ''.join(map(str, sys.version_info[:2])) def get_platform(): """Return our platform name 'win32', 'linux_x86_64'""" # XXX remove distutils dependency return distutils.util.get_platform().replace('.', '_').replace('-', '_') def get_supported(versions=None, noarch=False): """Return a list of supported tags for each version specified in `versions`. :param versions: a list of string versions, of the form ["33", "32"], or None. The first version will be assumed to support our ABI. """ supported = [] # Versions must be given with respect to the preference if versions is None: versions = [] major = sys.version_info[0] # Support all previous minor Python versions. for minor in range(sys.version_info[1], -1, -1): versions.append(''.join(map(str, (major, minor)))) impl = get_abbr_impl() abis = [] try: soabi = sysconfig.get_config_var('SOABI') except IOError as e: # Issue #1074 warnings.warn("{0}".format(e), RuntimeWarning) soabi = None if soabi and soabi.startswith('cpython-'): abis[0:0] = ['cp' + soabi.split('-', 1)[-1]] abi3s = set() import imp for suffix in imp.get_suffixes(): if suffix[0].startswith('.abi'): abi3s.add(suffix[0].split('.', 2)[1]) abis.extend(sorted(list(abi3s))) abis.append('none') if not noarch: arch = get_platform() # Current version, current API (built specifically for our Python): for abi in abis: supported.append(('%s%s' % (impl, versions[0]), abi, arch)) # No abi / arch, but requires our implementation: for i, version in enumerate(versions): supported.append(('%s%s' % (impl, version), 'none', 'any')) if i == 0: # Tagged specifically as being cross-version compatible # (with just the major version specified) supported.append(('%s%s' % (impl, versions[0][0]), 'none', 'any')) # No abi / arch, generic Python for i, version in enumerate(versions): supported.append(('py%s' % (version,), 'none', 'any')) if i == 0: supported.append(('py%s' % (version[0]), 'none', 'any')) return supported supported_tags = get_supported() supported_tags_noarch = get_supported(noarch=True)
Close