aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Lib/distutils/errors.py
Commit message (Collapse)AuthorAge
* reverted distutils its 3.1 state. All new work is now happening in ↵Tarek Ziadé2010-07-22
| | | | disutils2, and distutils is now feature-frozen.
* Merged revisions 75901 via svnmerge fromTarek Ziadé2009-10-28
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75901 | tarek.ziade | 2009-10-28 07:45:18 +0100 (Wed, 28 Oct 2009) | 1 line removed spurious spaces ........
* Merged revisions 75669-75671 via svnmerge fromTarek Ziadé2009-10-25
| | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/trunk ........ r75669 | tarek.ziade | 2009-10-24 17:10:37 +0200 (Sat, 24 Oct 2009) | 1 line Issue #7071: byte-compilation in Distutils now looks at sys.dont_write_bytecode ........ r75670 | tarek.ziade | 2009-10-24 17:19:03 +0200 (Sat, 24 Oct 2009) | 1 line fixed finally state in distutils.test_util ........ r75671 | tarek.ziade | 2009-10-24 17:51:30 +0200 (Sat, 24 Oct 2009) | 1 line fixed warning and error message ........
* General cleanup, raise normalization in Lib/distutils.Collin Winter2007-08-30
|
* Update compatibility comments to 2.1, corresponding to PEP 291 1.13.Martin v. Löwis2004-11-10
|
* Add comment to Distutil files about requiring 1.5.2 compatibility, asAndrew M. Kuchling2002-11-19
| | | | suggested by PEP 291.
* Fix docstring typo; remove 'created' lineAndrew M. Kuchling2002-11-14
|
* Added DistutilsTemplateError.Greg Ward2000-07-30
|
* Added PreprocessError and UnknownFileError (both used by CCompiler).Greg Ward2000-06-25
|
* Moved the CCompiler exceptions here, to avoid having to import ccompiler.pyGreg Ward2000-05-30
| | | | | just to get a little exception class. No more string-based exceptions.
* Reformatted all exception documentation as docstrings.Greg Ward2000-04-15
|
* Cleaned up/simplified error-handling:Greg Ward2000-04-15
| | | | | | | | | | | | | - DistutilsOptionError is now documented as it's actually used, ie. to indicate bogus option values (usually user options, eg. from the command-line) - added DistutilsSetupError to indicate errors that definitely arise in the setup script - got rid of DistutilsValueError, and changed all usage of it to either DistutilsSetupError or ValueError as appropriate - simplified a bunch of option get/set methods in Command and Distribution classes -- just pass on AttributeError most of the time, rather than turning it into something else
* Added DistutilsInternalError.Greg Ward2000-03-31
|
* Changed '__rcsid__' to '__revision__'.Greg Ward2000-03-02
|
* Added DistutilsExecError, DistutilsValueError.Greg Ward1999-08-14
|
* Don't pollute importer's namespace with type objects from types modules.Greg Ward1999-07-10
| | | | Added DistutilsPlatformError.
* First checkin of real Distutils code.Greg Ward1999-03-22