Delete some debugging print statements.

This commit is contained in:
Greg Ward 2000-04-10 01:31:58 +00:00
parent e9613ae05f
commit 7aff6f34fe
2 changed files with 0 additions and 4 deletions

View file

@ -45,8 +45,6 @@ class build (Command):
def finalize_options (self):
print "build.finalize: force=%s" % self.force
# Need this to name platform-specific directories, but sys.platform
# is not enough -- it only names the OS and version, not the
# hardware architecture!

View file

@ -32,11 +32,9 @@ class build_py (Command):
self.force = None
def finalize_options (self):
print "build_py.finalize: force=%s" % self.force
self.set_undefined_options ('build',
('build_lib', 'build_lib'),
('force', 'force'))
print "build_py.finalize: force=%s" % self.force
# Get the distribution options that are aliases for build_py
# options -- list of packages and list of modules.