;
Ñâ"Ic               @   sf  d  Z  d Z Gd   d e  Z Gd   d e  Z Gd   d e  Z Gd   d	 e  Z Gd
   d e  Z Gd   d e  Z Gd   d e  Z	 Gd   d e  Z
 Gd   d e  Z Gd   d e  Z Gd   d e  Z Gd   d e  Z Gd   d e  Z Gd   d e  Z Gd   d e  Z Gd    d! e  Z Gd"   d# e  Z Gd$   d% e  Z d& S('   u  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".u9   $Id: errors.py 57699 2007-08-30 03:52:21Z collin.winter $c             B   s   |  Ee  Z d  Z d S(   u   The root of all Distutils evil.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsError   s   
u   DistutilsErrorc             B   s   |  Ee  Z d  Z d S(   u   Unable to load an expected module, or to find an expected class
    within some module (in particular, command modules and classes).N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsModuleError   s   
u   DistutilsModuleErrorc             B   s   |  Ee  Z d  Z d S(   uŬ   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.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsClassError   s   
u   DistutilsClassErrorc             B   s   |  Ee  Z d  Z d S(   u7   The option table provided to 'fancy_getopt()' is bogus.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsGetoptError   s   
u   DistutilsGetoptErrorc             B   s   |  Ee  Z d  Z d S(   ua   Raised by fancy_getopt in response to getopt.error -- ie. an
    error in the command line usage.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsArgError!   s   
u   DistutilsArgErrorc             B   s   |  Ee  Z d  Z d S(   u   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.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsFileError&   s   
u   DistutilsFileErrorc             B   s   |  Ee  Z d  Z d S(   u  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.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsOptionError,   s   
u   DistutilsOptionErrorc             B   s   |  Ee  Z d  Z d S(   uq   For errors that can be definitely blamed on the setup script,
    such as invalid keyword arguments to 'setup()'.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsSetupError5   s   
u   DistutilsSetupErrorc             B   s   |  Ee  Z d  Z d S(   uĈ   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.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsPlatformError:   s   
u   DistutilsPlatformErrorc             B   s   |  Ee  Z d  Z d S(   u`   Any problems executing an external program (such as the C
    compiler, when compiling C files).N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsExecError@   s   
u   DistutilsExecErrorc             B   s   |  Ee  Z d  Z d S(   uo   Internal inconsistencies or impossibilities (obviously, this
    should never be seen if the code is working!).N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsInternalErrorE   s   
u   DistutilsInternalErrorc             B   s   |  Ee  Z d  Z d S(   u%   Syntax error in a file list template.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   DistutilsTemplateErrorJ   s   
u   DistutilsTemplateErrorc             B   s   |  Ee  Z d  Z d S(   u#   Some compile/link operation failed.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   CCompilerErrorO   s   
u   CCompilerErrorc             B   s   |  Ee  Z d  Z d S(   u.   Failure to preprocess one or more C/C++ files.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   PreprocessErrorR   s   
u   PreprocessErrorc             B   s   |  Ee  Z d  Z d S(   u2   Failure to compile one or more C/C++ source files.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   CompileErrorU   s   
u   CompileErrorc             B   s   |  Ee  Z d  Z d S(   uK   Failure to create a static library from one or more C/C++ object
    files.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   LibErrorX   s   
u   LibErrorc             B   s   |  Ee  Z d  Z d S(   u]   Failure to link one or more C/C++ object files into an executable
    or shared library file.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu	   LinkError\   s   
u	   LinkErrorc             B   s   |  Ee  Z d  Z d S(   u(   Attempt to process an unknown file type.N(   u   __name__u
   __module__u   __doc__(   u
   __locals__(    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   UnknownFileError`   s   
u   UnknownFileErrorN(   u   __doc__u   __revision__u	   Exceptionu   DistutilsErroru   DistutilsModuleErroru   DistutilsClassErroru   DistutilsGetoptErroru   DistutilsArgErroru   DistutilsFileErroru   DistutilsOptionErroru   DistutilsSetupErroru   DistutilsPlatformErroru   DistutilsExecErroru   DistutilsInternalErroru   DistutilsTemplateErroru   CCompilerErroru   PreprocessErroru   CompileErroru   LibErroru	   LinkErroru   UnknownFileError(    (    (    u-   /mit/python/lib/python3.0/distutils/errors.pyu   <module>	   s&   	