Kaydet (Commit) ef9ad6df authored tarafından Greg Ward's avatar Greg Ward

Tweaked verbosity messages for byte-compilation.

üst 0c35ac62
......@@ -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
......
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment