diff options
| author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-24 15:10:37 (GMT) |
|---|---|---|
| committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-24 15:10:37 (GMT) |
| commit | b9c1cfc42881370322ff6894568b45dcfec5ba2e (patch) | |
| tree | 590778ae7770d5c8dcdfbffc7f77c8b91ccd4c30 /Lib/distutils/errors.py | |
| parent | da8652d920210a5ff783a7ad30f4c24d2b5ff2a2 (diff) | |
| download | cpython-b9c1cfc42881370322ff6894568b45dcfec5ba2e.zip cpython-b9c1cfc42881370322ff6894568b45dcfec5ba2e.tar.gz cpython-b9c1cfc42881370322ff6894568b45dcfec5ba2e.tar.bz2 | |
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 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): |
