Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a7be8bf

Browse files
committed
Re-indent scons command options.
1 parent 2f6604a commit a7be8bf

1 file changed

Lines changed: 20 additions & 20 deletions

File tree

numpy/distutils/command/scons.py

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -291,26 +291,26 @@ def check_numscons(minver):
291291
class scons(old_build_ext):
292292
# XXX: add an option to the scons command for configuration (auto/force/cache).
293293
description = "Scons builder"
294-
user_options = [('jobs=', 'j', "specify number of worker threads when executing scons"),
295-
('inplace', 'i', 'If specified, build in place.'),
296-
('bypass', 'b', 'Bypass distutils compiler detection (experimental).'),
297-
('scons-tool-path=', None, 'specify additional path '\
298-
'(absolute) to look for scons tools'),
299-
('silent=', None, 'specify whether scons output should less verbose'\
300-
'(1), silent (2), super silent (3) or not (0, default)'),
301-
('log-level=', None, 'specify log level for numscons. Any value valid '\
302-
'for the logging python module is valid'),
303-
('package-list=', None,
304-
'If specified, only run scons on the given '\
305-
'packages (example: --package-list=scipy.cluster). If empty, '\
306-
'no package is built'),
307-
('fcompiler=', None,
308-
"specify the Fortran compiler type"),
309-
('compiler=', None,
310-
"specify the C compiler type"),
311-
('cxxcompiler=', None,
312-
"specify the C++ compiler type (same as C by default)"),
313-
]
294+
user_options = [
295+
('jobs=', 'j', "specify number of worker threads when executing" \
296+
"scons"),
297+
('inplace', 'i', 'If specified, build in place.'),
298+
('bypass', 'b', 'Bypass distutils compiler detection (experimental).'),
299+
('scons-tool-path=', None, 'specify additional path '\
300+
'(absolute) to look for scons tools'),
301+
('silent=', None, 'specify whether scons output should less verbose'\
302+
'(1), silent (2), super silent (3) or not (0, default)'),
303+
('log-level=', None, 'specify log level for numscons. Any value ' \
304+
'valid for the logging python module is valid'),
305+
('package-list=', None,
306+
'If specified, only run scons on the given '\
307+
'packages (example: --package-list=scipy.cluster). If empty, '\
308+
'no package is built'),
309+
('fcompiler=', None, "specify the Fortran compiler type"),
310+
('compiler=', None, "specify the C compiler type"),
311+
('cxxcompiler=', None,
312+
"specify the C++ compiler type (same as C by default)"),
313+
]
314314

315315
def initialize_options(self):
316316
old_build_ext.initialize_options(self)

0 commit comments

Comments
 (0)