mirror of
https://github.com/python/cpython.git
synced 2025-10-17 04:08:28 +00:00
fix inconsistent use of tabs and spaces
This commit is contained in:
parent
bc30b11764
commit
65d6edb478
4 changed files with 24 additions and 24 deletions
|
@ -370,12 +370,12 @@ class build_ext (Command):
|
|||
ext_filename = os.path.join (self.build_lib,
|
||||
self.get_ext_filename(fullname))
|
||||
|
||||
if not (self.force or newer_group(sources, ext_filename, 'newer')):
|
||||
self.announce ("skipping '%s' extension (up-to-date)" %
|
||||
if not (self.force or newer_group(sources, ext_filename, 'newer')):
|
||||
self.announce ("skipping '%s' extension (up-to-date)" %
|
||||
ext.name)
|
||||
continue # 'for' loop over all extensions
|
||||
else:
|
||||
self.announce ("building '%s' extension" % ext.name)
|
||||
continue # 'for' loop over all extensions
|
||||
else:
|
||||
self.announce ("building '%s' extension" % ext.name)
|
||||
|
||||
# First, scan the sources for SWIG definition files (.i), run
|
||||
# SWIG on 'em to create .c files, and modify the sources list
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue