Commit 5950c4c5 authored by Greg Ward's avatar Greg Ward

Delete some debugging print statements.

parent a0bf5378
...@@ -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!
......
...@@ -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.
......
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