Whitespace normalization.

This commit is contained in:
Fred Drake 2001-12-06 21:01:19 +00:00
parent b94b849d65
commit 21d45356b8
11 changed files with 48 additions and 48 deletions

View file

@ -106,7 +106,7 @@ class build_py (Command):
self.byte_compile(self.get_outputs(include_bytecode=0))
# run ()
def get_package_dir (self, package):
"""Return the directory, relative to the top of the source
@ -178,13 +178,13 @@ class build_py (Command):
# Either not in a package at all (__init__.py not expected), or
# __init__.py doesn't exist -- so don't return the filename.
return
# check_package ()
def check_module (self, module, module_file):
if not os.path.isfile(module_file):
self.warn("file %s (for module %s) not found" %
self.warn("file %s (for module %s) not found" %
(module_file, module))
return 0
else: