From ef9ad6df0160a6337632a9d3047dd0d072f5c3e4 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Sun, 3 Oct 1999 21:03:26 +0000 Subject: Tweaked verbosity messages for byte-compilation. --- Lib/distutils/command/install_lib.py | 4 ++-- Lib/distutils/command/install_py.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Lib/distutils/command/install_lib.py b/Lib/distutils/command/install_lib.py index 978bb3b..35deaa8 100644 --- a/Lib/distutils/command/install_lib.py +++ b/Lib/distutils/command/install_lib.py @@ -66,8 +66,8 @@ class InstallPy (Command): out_fn = string.replace (f, '.py', '.pyc') self.make_file (f, out_fn, compile, (f,), - "compiling %s -> %s" % (f, out_fn), - "compilation of %s skipped" % f) + "byte-compiling %s" % f, + "byte-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 diff --git a/Lib/distutils/command/install_py.py b/Lib/distutils/command/install_py.py index 978bb3b..35deaa8 100644 --- a/Lib/distutils/command/install_py.py +++ b/Lib/distutils/command/install_py.py @@ -66,8 +66,8 @@ class InstallPy (Command): out_fn = string.replace (f, '.py', '.pyc') self.make_file (f, out_fn, compile, (f,), - "compiling %s -> %s" % (f, out_fn), - "compilation of %s skipped" % f) + "byte-compiling %s" % f, + "byte-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 -- cgit v0.12