diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-24 15:10:37 +0000 |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-24 15:10:37 +0000 |
commit | b9c1cfc42881370322ff6894568b45dcfec5ba2e (patch) | |
tree | 590778ae7770d5c8dcdfbffc7f77c8b91ccd4c30 /Lib/distutils/errors.py | |
parent | da8652d920210a5ff783a7ad30f4c24d2b5ff2a2 (diff) | |
download | cpython-git-b9c1cfc42881370322ff6894568b45dcfec5ba2e.tar.gz |
Issue #7071: byte-compilation in Distutils now looks at sys.dont_write_bytecode
Diffstat (limited to 'Lib/distutils/errors.py')
-rw-r--r-- | Lib/distutils/errors.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/distutils/errors.py b/Lib/distutils/errors.py index 963d83377c..acecacccb5 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): |