]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Tweaked verbosity messages for byte-compilation.
authorGreg Ward <gward@python.net>
Sun, 3 Oct 1999 21:03:26 +0000 (21:03 +0000)
committerGreg Ward <gward@python.net>
Sun, 3 Oct 1999 21:03:26 +0000 (21:03 +0000)
Lib/distutils/command/install_lib.py
Lib/distutils/command/install_py.py

index 978bb3b958879fb6b1ed9e8b2ba44d989091e569..35deaa812ff5c645cb0b0ff499cbe89ba282bef1 100644 (file)
@@ -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
index 978bb3b958879fb6b1ed9e8b2ba44d989091e569..35deaa812ff5c645cb0b0ff499cbe89ba282bef1 100644 (file)
@@ -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