Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.70.100.159
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
setuptools /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
_distutils
[ DIR ]
drwxr-xr-x
_vendor
[ DIR ]
drwxr-xr-x
command
[ DIR ]
drwxr-xr-x
extern
[ DIR ]
drwxr-xr-x
__init__.py
7.27
KB
-rw-r--r--
_deprecation_warning.py
218
B
-rw-r--r--
_imp.py
2.34
KB
-rw-r--r--
archive_util.py
6.91
KB
-rw-r--r--
build_meta.py
10.29
KB
-rw-r--r--
config.py
22.61
KB
-rw-r--r--
dep_util.py
949
B
-rw-r--r--
depends.py
5.37
KB
-rw-r--r--
dist.py
42.15
KB
-rw-r--r--
errors.py
1.52
KB
-rw-r--r--
extension.py
1.64
KB
-rw-r--r--
glob.py
4.76
KB
-rw-r--r--
installer.py
3.73
KB
-rw-r--r--
launch.py
812
B
-rw-r--r--
monkey.py
5.09
KB
-rw-r--r--
msvc.py
49.38
KB
-rw-r--r--
namespaces.py
3.02
KB
-rw-r--r--
package_index.py
40.89
KB
-rw-r--r--
py34compat.py
245
B
-rw-r--r--
sandbox.py
14.01
KB
-rw-r--r--
script (dev).tmpl
218
B
-rw-r--r--
script.tmpl
138
B
-rw-r--r--
unicode_utils.py
941
B
-rw-r--r--
version.py
144
B
-rw-r--r--
wheel.py
8.09
KB
-rw-r--r--
windows_support.py
714
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : errors.py
"""setuptools.errors Provides exceptions used by setuptools modules. """ from distutils import errors as _distutils_errors from distutils.errors import DistutilsError class RemovedCommandError(DistutilsError, RuntimeError): """Error used for commands that have been removed in setuptools. Since ``setuptools`` is built on ``distutils``, simply removing a command from ``setuptools`` will make the behavior fall back to ``distutils``; this error is raised if a command exists in ``distutils`` but has been actively removed in ``setuptools``. """ # Re-export errors from distutils to facilitate the migration to PEP632 ByteCompileError = _distutils_errors.DistutilsByteCompileError CCompilerError = _distutils_errors.CCompilerError ClassError = _distutils_errors.DistutilsClassError CompileError = _distutils_errors.CompileError ExecError = _distutils_errors.DistutilsExecError FileError = _distutils_errors.DistutilsFileError InternalError = _distutils_errors.DistutilsInternalError LibError = _distutils_errors.LibError LinkError = _distutils_errors.LinkError ModuleError = _distutils_errors.DistutilsModuleError OptionError = _distutils_errors.DistutilsOptionError PlatformError = _distutils_errors.DistutilsPlatformError PreprocessError = _distutils_errors.PreprocessError SetupError = _distutils_errors.DistutilsSetupError TemplateError = _distutils_errors.DistutilsTemplateError UnknownFileError = _distutils_errors.UnknownFileError # The root error class in the hierarchy BaseError = _distutils_errors.DistutilsError
Close