-í
ì¶<c       sÛ    d  Z  	  d Z  d e f d „  ƒ  YZ  d e f d „  ƒ  YZ  d e f d „  ƒ  YZ  d e f d	 „  ƒ  YZ # d
 e f d „  ƒ  YZ ( d e f d „  ƒ  YZ . d e f d „  ƒ  YZ	 7 d e f d „  ƒ  YZ
 < d e f d „  ƒ  YZ B d e f d „  ƒ  YZ G d e f d „  ƒ  YZ L d e f d „  ƒ  YZ Q d e f d „  ƒ  YZ T d e f d „  ƒ  YZ W d e f d „  ƒ  YZ Z d  e f d! „  ƒ  YZ ^ d" e f d# „  ƒ  YZ b d$ e f d% „  ƒ  YZ d& S('   sˆ  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 safe to use in "from ... import *" mode; it only exports
symbols whose names start with "Distutils" and end with "Error".s5   $Id: errors.py,v 1.10 2000/07/30 01:03:31 gward Exp $s   DistutilsErrorc      s    t  Z d  Z   RS(   s   The root of all Distutils evil.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsError s   s   DistutilsModuleErrorc      s    t  Z d  Z   RS(   s„   Unable to load an expected module, or to find an expected class
    within some module (in particular, command modules and classes).(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsModuleError s   s   DistutilsClassErrorc      s    t  Z d  Z   RS(   sÝ   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.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsClassError s   s   DistutilsGetoptErrorc      s    t  Z d  Z   ! RS(   s7   The option table provided to 'fancy_getopt()' is bogus.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsGetoptError s   s   DistutilsArgErrorc      s   # t  Z d  Z % & RS(   sa   Raised by fancy_getopt in response to getopt.error -- ie. an
    error in the command line usage.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsArgError# s   s   DistutilsFileErrorc      s   ( t  Z d  Z + , RS(   sž   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.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsFileError( s   s   DistutilsOptionErrorc      s   . t  Z d  Z 4 5 RS(   s‰  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.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsOptionError. s   s   DistutilsSetupErrorc      s   7 t  Z d  Z 9 : RS(   sq   For errors that can be definitely blamed on the setup script,
    such as invalid keyword arguments to 'setup()'.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsSetupError7 s   s   DistutilsPlatformErrorc      s   < t  Z d  Z ? @ RS(   sÆ   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.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsPlatformError< s   s   DistutilsExecErrorc      s   B t  Z d  Z D E RS(   s`   Any problems executing an external program (such as the C
    compiler, when compiling C files).(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsExecErrorB s   s   DistutilsInternalErrorc      s   G t  Z d  Z I J RS(   so   Internal inconsistencies or impossibilities (obviously, this
    should never be seen if the code is working!).(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsInternalErrorG s   s   DistutilsTemplateErrorc      s   L t  Z d  Z M RS(   s%   Syntax error in a file list template.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   DistutilsTemplateErrorL s   s   CCompilerErrorc      s   Q t  Z d  Z R RS(   s#   Some compile/link operation failed.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   CCompilerErrorQ s   s   PreprocessErrorc      s   T t  Z d  Z U RS(   s.   Failure to preprocess one or more C/C++ files.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   PreprocessErrorT s   s   CompileErrorc      s   W t  Z d  Z X RS(   s2   Failure to compile one or more C/C++ source files.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   CompileErrorW s   s   LibErrorc      s   Z t  Z d  Z \ RS(   sK   Failure to create a static library from one or more C/C++ object
    files.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   LibErrorZ s   s	   LinkErrorc      s   ^ t  Z d  Z ` RS(   s]   Failure to link one or more C/C++ object files into an executable
    or shared library file.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys	   LinkError^ s   s   UnknownFileErrorc      s   b t  Z d  Z c RS(   s(   Attempt to process an unknown file type.(   s   __name__s
   __module__s   __doc__(    (    (    s&   /usr/lib/python2.2/distutils/errors.pys   UnknownFileErrorb s   N(   s   __doc__s   __revision__s	   Exceptions   DistutilsErrors   DistutilsModuleErrors   DistutilsClassErrors   DistutilsGetoptErrors   DistutilsArgErrors   DistutilsFileErrors   DistutilsOptionErrors   DistutilsSetupErrors   DistutilsPlatformErrors   DistutilsExecErrors   DistutilsInternalErrors   DistutilsTemplateErrors   CCompilerErrors   PreprocessErrors   CompileErrors   LibErrors	   LinkErrors   UnknownFileError(   s   DistutilsFileErrors   DistutilsArgErrors   LibErrors   DistutilsSetupErrors   DistutilsInternalErrors   DistutilsPlatformErrors   DistutilsClassErrors   DistutilsErrors   CCompilerErrors   __revision__s   DistutilsTemplateErrors   CompileErrors	   LinkErrors   DistutilsExecErrors   DistutilsGetoptErrors   DistutilsModuleErrors   DistutilsOptionErrors   UnknownFileErrors   PreprocessError(    (    s&   /usr/lib/python2.2/distutils/errors.pys   ?	 s&   		