diff options
author | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-25 23:08:47 (GMT) |
---|---|---|
committer | Tarek Ziadé <ziade.tarek@gmail.com> | 2009-10-25 23:08:47 (GMT) |
commit | 04fe7c01a8a0dd8a7234dd0f527e22386c2fed04 (patch) | |
tree | f4227e1b677431d14f9d8757e6ade6d858f422cc /Lib/distutils/command/build_py.py | |
parent | 4824c25e756280b13705c00fd56cb307e5a44cc7 (diff) | |
download | cpython-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/command/build_py.py')
-rw-r--r-- | Lib/distutils/command/build_py.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py index 4cc80f7..fa08579 100644 --- a/Lib/distutils/command/build_py.py +++ b/Lib/distutils/command/build_py.py @@ -5,6 +5,7 @@ Implements the Distutils 'build_py' command.""" __revision__ = "$Id$" import os +import sys from glob import glob from distutils.core import Command @@ -369,6 +370,10 @@ class build_py(Command): self.build_module(module, module_file, package) def byte_compile(self, files): + if sys.dont_write_bytecode: + self.warn('byte-compiling is disabled, skipping.') + return + from distutils.util import byte_compile prefix = self.build_lib if prefix[-1] != os.sep: |