Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
setuptools
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jérome Perrin
setuptools
Commits
5fb0798f
Commit
5fb0798f
authored
Oct 03, 1999
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Tweaked verbosity messages for byte-compilation.
parent
bf658c01
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
command/install_lib.py
command/install_lib.py
+2
-2
command/install_py.py
command/install_py.py
+2
-2
No files found.
command/install_lib.py
View file @
5fb0798f
...
...
@@ -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
...
...
command/install_py.py
View file @
5fb0798f
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment