mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Tweaked verbosity messages for byte-compilation.
This commit is contained in:
parent
0c35ac62d8
commit
ef9ad6df01
2 changed files with 4 additions and 4 deletions
|
@ -66,8 +66,8 @@ class InstallPy (Command):
|
||||||
out_fn = string.replace (f, '.py', '.pyc')
|
out_fn = string.replace (f, '.py', '.pyc')
|
||||||
|
|
||||||
self.make_file (f, out_fn, compile, (f,),
|
self.make_file (f, out_fn, compile, (f,),
|
||||||
"compiling %s -> %s" % (f, out_fn),
|
"byte-compiling %s" % f,
|
||||||
"compilation of %s skipped" % f)
|
"byte-compilation of %s skipped" % f)
|
||||||
|
|
||||||
# XXX ignore self.optimize for now, since we don't really know if
|
# 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
|
# 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')
|
out_fn = string.replace (f, '.py', '.pyc')
|
||||||
|
|
||||||
self.make_file (f, out_fn, compile, (f,),
|
self.make_file (f, out_fn, compile, (f,),
|
||||||
"compiling %s -> %s" % (f, out_fn),
|
"byte-compiling %s" % f,
|
||||||
"compilation of %s skipped" % f)
|
"byte-compilation of %s skipped" % f)
|
||||||
|
|
||||||
# XXX ignore self.optimize for now, since we don't really know if
|
# 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
|
# we're compiling optimally or not, and couldn't pick what to do
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue