Linux id-dci-web1412.main-hosting.eu 5.14.0-611.20.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Jan 14 06:35:04 EST 2026 x86_64
LiteSpeed
: 2a02:4780:6:1512:0:19fc:adf1:2 | : 216.73.216.85
Cant Read [ /etc/named.conf ]
8.1.34
u435990001
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
/
opt /
gsutil /
third_party /
funcsigs /
[ HOME SHELL ]
Name
Size
Permission
Action
docs
[ DIR ]
drwxr-xr-x
funcsigs
[ DIR ]
drwxr-xr-x
requirements
[ DIR ]
drwxr-xr-x
tests
[ DIR ]
drwxr-xr-x
.coveragerc
71
B
-rw-r--r--
.gitignore
149
B
-rw-r--r--
.travis.yml
299
B
-rw-r--r--
CHANGELOG
417
B
-rw-r--r--
LICENSE
549
B
-rw-r--r--
MANIFEST.in
140
B
-rw-r--r--
Makefile
698
B
-rw-r--r--
README.rst
12.98
KB
-rw-r--r--
setup.cfg
22
B
-rw-r--r--
setup.py
1.85
KB
-rw-r--r--
tox.ini
191
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : setup.py
#!/usr/bin/env python from setuptools import setup import re import sys def load_version(filename='funcsigs/version.py'): "Parse a __version__ number from a source file" with open(filename) as source: text = source.read() match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", text) if not match: msg = "Unable to find version number in {}".format(filename) raise RuntimeError(msg) version = match.group(1) return version setup( name="funcsigs", version=load_version(), packages=['funcsigs'], zip_safe=False, author="Testing Cabal", author_email="testing-in-python@lists.idyll.org", url="http://funcsigs.readthedocs.org", description="Python function signatures from PEP362 for Python 2.6, 2.7 and 3.2+", long_description=open('README.rst').read(), license="ASL", extras_require = { ':python_version<"2.7"': ['ordereddict'], }, setup_requires = ["setuptools>=17.1"], classifiers = [ 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Operating System :: OS Independent', 'Programming Language :: Python', 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Software Development :: Libraries :: Python Modules' ], tests_require = ['unittest2'], test_suite = 'unittest2.collector', )
Close