mirror of
https://github.com/PyCQA/flake8.git
synced 2026-04-02 11:56:52 +00:00
merge back Jason change
This commit is contained in:
commit
1307356ba7
2 changed files with 8 additions and 1 deletions
|
|
@ -1272,6 +1272,9 @@ def process_options(arglist=None):
|
|||
__version__)
|
||||
parser = OptionParser(version=version,
|
||||
usage="%prog [options] input ...")
|
||||
parser.add_option('--builtins', default=[], action="append",
|
||||
help="append builtin function (pyflakes "
|
||||
"_MAGIC_GLOBALS)")
|
||||
parser.add_option('--max-complexity', default=-1, action='store',
|
||||
type='int', help="McCabe complexity treshold")
|
||||
parser.add_option('-v', '--verbose', default=0, action='count',
|
||||
|
|
|
|||
|
|
@ -47,14 +47,18 @@ def _get_python_files(paths):
|
|||
def main():
|
||||
options, args = pep8.process_options()
|
||||
complexity = options.max_complexity
|
||||
builtins = set(options.builtins)
|
||||
warnings = 0
|
||||
|
||||
if builtins:
|
||||
orig_builtins = set(pyflakes._MAGIC_GLOBALS)
|
||||
pyflakes._MAGIC_GLOBALS = orig_builtins | builtins
|
||||
if args:
|
||||
for path in _get_python_files(args):
|
||||
warnings += check_file(path, complexity)
|
||||
else:
|
||||
stdin = sys.stdin.read()
|
||||
warnings += check_code(stdin, complexity)
|
||||
|
||||
raise SystemExit(warnings > 0)
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue