summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/build_py.py
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>1999-04-04 02:46:29 (GMT)
committerGreg Ward <gward@python.net>1999-04-04 02:46:29 (GMT)
commit4070f50537fd1945d2ecbb9d4e72aeba7e72fa55 (patch)
treea4ab0319733d1e159e39442d523712008a79f134 /Lib/distutils/command/build_py.py
parentbd3bdde70bebd5f56f163dab7e6d8a04ff973013 (diff)
downloadcpython-4070f50537fd1945d2ecbb9d4e72aeba7e72fa55.zip
cpython-4070f50537fd1945d2ecbb9d4e72aeba7e72fa55.tar.gz
cpython-4070f50537fd1945d2ecbb9d4e72aeba7e72fa55.tar.bz2
Changed to use the method versions of 'copy_file()', 'copy_tree()',
and 'make_file()'-- that way, the verbose and dry-run flags are handled for free.
Diffstat (limited to 'Lib/distutils/command/build_py.py')
-rw-r--r--Lib/distutils/command/build_py.py11
1 files changed, 5 insertions, 6 deletions
diff --git a/Lib/distutils/command/build_py.py b/Lib/distutils/command/build_py.py
index ae133f9..0ed8486 100644
--- a/Lib/distutils/command/build_py.py
+++ b/Lib/distutils/command/build_py.py
@@ -84,11 +84,10 @@ class BuildPy (Command):
for i in range (len (infiles)):
outdir = os.path.split (outfiles[i])[0]
if not created.get(outdir):
- mkpath (outdir, verbose=self.distribution.verbose)
+ self.mkpath (outdir)
created[outdir] = 1
- copy_file (infiles[i], outfiles[i],
- update=1, verbose=self.distribution.verbose)
+ self.copy_file (infiles[i], outfiles[i])
# (Optionally) compile .py to .pyc
# XXX hey! we can't control whether we optimize or not; that's up
@@ -102,9 +101,9 @@ class BuildPy (Command):
# XXX can't assume this filename mapping!
out_fn = string.replace (f, '.py', '.pyc')
- make_file (f, out_fn, compile, (f,),
- verbose=self.distribution.verbose,
- update_message="compiling %s" % f)
+ self.make_file (f, out_fn, compile, (f,),
+ "compiling %s -> %s" % (f, out_fn),
+ "compilation of %s skipped" % f)
# XXX ignore self.optimize for now, since we don't really know if
# we're compiling optimally or not, and couldn't pick what to do