Hackfut Security File Manager
Current Path:
/usr/lib64/python2.6/distutils
usr
/
lib64
/
python2.6
/
distutils
/
📁
..
📄
README
(1014 B)
📄
__init__.py
(670 B)
📄
__init__.pyc
(439 B)
📄
__init__.pyo
(439 B)
📄
archive_util.py
(6.17 KB)
📄
archive_util.pyc
(5.37 KB)
📄
archive_util.pyo
(5.37 KB)
📄
bcppcompiler.py
(14.74 KB)
📄
bcppcompiler.pyc
(7.92 KB)
📄
bcppcompiler.pyo
(7.92 KB)
📄
ccompiler.py
(47.72 KB)
📄
ccompiler.pyc
(36.94 KB)
📄
ccompiler.pyo
(36.75 KB)
📄
cmd.py
(18.8 KB)
📄
cmd.pyc
(16.53 KB)
📄
cmd.pyo
(16.53 KB)
📁
command
📄
config.py
(4.07 KB)
📄
config.pyc
(3.61 KB)
📄
config.pyo
(3.61 KB)
📄
core.py
(8.87 KB)
📄
core.pyc
(7.52 KB)
📄
core.pyo
(7.52 KB)
📄
cygwinccompiler.py
(16.89 KB)
📄
cygwinccompiler.pyc
(9.31 KB)
📄
cygwinccompiler.pyo
(9.31 KB)
📄
debug.py
(265 B)
📄
debug.pyc
(299 B)
📄
debug.pyo
(299 B)
📄
dep_util.py
(3.55 KB)
📄
dep_util.pyc
(3.13 KB)
📄
dep_util.pyo
(3.13 KB)
📄
dir_util.py
(7.93 KB)
📄
dir_util.pyc
(6.74 KB)
📄
dir_util.pyo
(6.74 KB)
📄
dist.py
(46.88 KB)
📄
dist.pyc
(37.27 KB)
📄
dist.pyo
(37.27 KB)
📄
emxccompiler.py
(11.63 KB)
📄
emxccompiler.pyc
(7.37 KB)
📄
emxccompiler.pyo
(7.37 KB)
📄
errors.py
(3.63 KB)
📄
errors.pyc
(6.21 KB)
📄
errors.pyo
(6.21 KB)
📄
extension.py
(10.08 KB)
📄
extension.pyc
(7.23 KB)
📄
extension.pyo
(7.01 KB)
📄
fancy_getopt.py
(18 KB)
📄
fancy_getopt.pyc
(12.2 KB)
📄
fancy_getopt.pyo
(12.01 KB)
📄
file_util.py
(8.12 KB)
📄
file_util.pyc
(6.71 KB)
📄
file_util.pyo
(6.71 KB)
📄
filelist.py
(12.57 KB)
📄
filelist.pyc
(10.56 KB)
📄
filelist.pyo
(10.56 KB)
📄
log.py
(1.57 KB)
📄
log.pyc
(2.51 KB)
📄
log.pyo
(2.51 KB)
📄
msvc9compiler.py
(28.03 KB)
📄
msvc9compiler.pyc
(20.02 KB)
📄
msvc9compiler.pyo
(19.95 KB)
📄
msvccompiler.py
(23.2 KB)
📄
msvccompiler.pyc
(17.38 KB)
📄
msvccompiler.pyo
(17.38 KB)
📄
mwerkscompiler.py
(10.1 KB)
📄
mwerkscompiler.pyc
(7.49 KB)
📄
mwerkscompiler.pyo
(7.49 KB)
📄
spawn.py
(6.83 KB)
📄
spawn.pyc
(5.47 KB)
📄
spawn.pyo
(5.47 KB)
📄
sysconfig.py
(22.33 KB)
📄
sysconfig.pyc
(15.64 KB)
📄
sysconfig.pyo
(15.64 KB)
📄
text_file.py
(14.79 KB)
📄
text_file.pyc
(10.99 KB)
📄
text_file.pyo
(10.99 KB)
📄
unixccompiler.py
(14.15 KB)
📄
unixccompiler.pyc
(8.88 KB)
📄
unixccompiler.pyo
(8.88 KB)
📄
util.py
(21.46 KB)
📄
util.pyc
(16.04 KB)
📄
util.pyo
(16.04 KB)
📄
version.py
(11.22 KB)
📄
version.pyc
(7.07 KB)
📄
version.pyo
(7.07 KB)
📄
versionpredicate.py
(4.98 KB)
📄
versionpredicate.pyc
(5.47 KB)
📄
versionpredicate.pyo
(5.47 KB)
Editing: errors.py
"""distutils.errors Provides exceptions used by the Distutils modules. Note that Distutils modules may raise standard exceptions; in particular, SystemExit is usually raised for errors that are obviously the end-user's fault (eg. bad command-line arguments). This module is safe to use in "from ... import *" mode; it only exports symbols whose names start with "Distutils" and end with "Error".""" # This module should be kept compatible with Python 2.1. __revision__ = "$Id: errors.py 77376 2010-01-08 23:27:23Z tarek.ziade $" class DistutilsError (Exception): """The root of all Distutils evil.""" pass class DistutilsModuleError (DistutilsError): """Unable to load an expected module, or to find an expected class within some module (in particular, command modules and classes).""" pass class DistutilsClassError (DistutilsError): """Some command class (or possibly distribution class, if anyone feels a need to subclass Distribution) is found not to be holding up its end of the bargain, ie. implementing some part of the "command "interface.""" pass class DistutilsGetoptError (DistutilsError): """The option table provided to 'fancy_getopt()' is bogus.""" pass class DistutilsArgError (DistutilsError): """Raised by fancy_getopt in response to getopt.error -- ie. an error in the command line usage.""" pass class DistutilsFileError (DistutilsError): """Any problems in the filesystem: expected file not found, etc. Typically this is for problems that we detect before IOError or OSError could be raised.""" pass class DistutilsOptionError (DistutilsError): """Syntactic/semantic errors in command options, such as use of mutually conflicting options, or inconsistent options, badly-spelled values, etc. No distinction is made between option values originating in the setup script, the command line, config files, or what-have-you -- but if we *know* something originated in the setup script, we'll raise DistutilsSetupError instead.""" pass class DistutilsSetupError (DistutilsError): """For errors that can be definitely blamed on the setup script, such as invalid keyword arguments to 'setup()'.""" pass class DistutilsPlatformError (DistutilsError): """We don't know how to do something on the current platform (but we do know how to do it on some platform) -- eg. trying to compile C files on a platform not supported by a CCompiler subclass.""" pass class DistutilsExecError (DistutilsError): """Any problems executing an external program (such as the C compiler, when compiling C files).""" pass class DistutilsInternalError (DistutilsError): """Internal inconsistencies or impossibilities (obviously, this should never be seen if the code is working!).""" pass class DistutilsTemplateError (DistutilsError): """Syntax error in a file list template.""" class DistutilsByteCompileError(DistutilsError): """Byte compile error.""" # Exception classes used by the CCompiler implementation classes class CCompilerError (Exception): """Some compile/link operation failed.""" class PreprocessError (CCompilerError): """Failure to preprocess one or more C/C++ files.""" class CompileError (CCompilerError): """Failure to compile one or more C/C++ source files.""" class LibError (CCompilerError): """Failure to create a static library from one or more C/C++ object files.""" class LinkError (CCompilerError): """Failure to link one or more C/C++ object files into an executable or shared library file.""" class UnknownFileError (CCompilerError): """Attempt to process an unknown file type."""
Upload File
Create Folder