Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
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
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
5950c4c5
Commit
5950c4c5
authored
Apr 10, 2000
by
Greg Ward
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete some debugging print statements.
parent
a0bf5378
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
0 additions
and
4 deletions
+0
-4
Lib/distutils/command/build.py
Lib/distutils/command/build.py
+0
-2
Lib/distutils/command/build_py.py
Lib/distutils/command/build_py.py
+0
-2
No files found.
Lib/distutils/command/build.py
View file @
5950c4c5
...
@@ -45,8 +45,6 @@ class build (Command):
...
@@ -45,8 +45,6 @@ class build (Command):
def
finalize_options
(
self
):
def
finalize_options
(
self
):
print
"build.finalize: force=%s"
%
self
.
force
# Need this to name platform-specific directories, but sys.platform
# Need this to name platform-specific directories, but sys.platform
# is not enough -- it only names the OS and version, not the
# is not enough -- it only names the OS and version, not the
# hardware architecture!
# hardware architecture!
...
...
Lib/distutils/command/build_py.py
View file @
5950c4c5
...
@@ -32,11 +32,9 @@ class build_py (Command):
...
@@ -32,11 +32,9 @@ class build_py (Command):
self
.
force
=
None
self
.
force
=
None
def
finalize_options
(
self
):
def
finalize_options
(
self
):
print
"build_py.finalize: force=%s"
%
self
.
force
self
.
set_undefined_options
(
'build'
,
self
.
set_undefined_options
(
'build'
,
(
'build_lib'
,
'build_lib'
),
(
'build_lib'
,
'build_lib'
),
(
'force'
,
'force'
))
(
'force'
,
'force'
))
print
"build_py.finalize: force=%s"
%
self
.
force
# Get the distribution options that are aliases for build_py
# Get the distribution options that are aliases for build_py
# options -- list of packages and list of modules.
# options -- list of packages and list of modules.
...
...
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