From: Greg Ward Date: Sun, 30 Jul 2000 01:03:31 +0000 (+0000) Subject: Added DistutilsTemplateError. X-Git-Tag: v2.0b1~681 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=58bff53320f41423cf3585dcf45fd24ce5eaf248;p=thirdparty%2FPython%2Fcpython.git Added DistutilsTemplateError. --- diff --git a/Lib/distutils/errors.py b/Lib/distutils/errors.py index a718f01a40cb..bec346451128 100644 --- a/Lib/distutils/errors.py +++ b/Lib/distutils/errors.py @@ -73,6 +73,9 @@ class DistutilsInternalError (DistutilsError): should never be seen if the code is working!).""" pass +class DistutilsTemplateError (DistutilsError): + """Syntax error in a file list template.""" + # Exception classes used by the CCompiler implementation classes class CCompilerError (Exception):