summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/errors.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-10-25 23:08:47 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-10-25 23:08:47 (GMT)
commit04fe7c01a8a0dd8a7234dd0f527e22386c2fed04 (patch)
treef4227e1b677431d14f9d8757e6ade6d858f422cc /Lib/distutils/errors.py
parent4824c25e756280b13705c00fd56cb307e5a44cc7 (diff)
downloadcpython-04fe7c01a8a0dd8a7234dd0f527e22386c2fed04.zip
cpython-04fe7c01a8a0dd8a7234dd0f527e22386c2fed04.tar.gz
cpython-04fe7c01a8a0dd8a7234dd0f527e22386c2fed04.tar.bz2
Merged revisions 75669-75671 via svnmerge from
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 ........
Diffstat (limited to 'Lib/distutils/errors.py')
-rw-r--r--Lib/distutils/errors.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/errors.py b/Lib/distutils/errors.py
index 963d833..acecacc 100644
--- a/Lib/distutils/errors.py
+++ b/Lib/distutils/errors.py
@@ -74,6 +74,8 @@ class DistutilsInternalError (DistutilsError):
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):