Lines Matching refs:args
30 def parse_arguments(args):
31 if args is None:
32 args = sys.argv[1:]
34 if '-v' in args:
36 args.remove('-v')
37 if '--verbose' in args:
39 args.remove('--verbose')
43 if args:
44 include_functions.append(args.pop(0))
48 include_filenames.extend(args)
101 for arg in info[1].args:
119 def run(collections, args=None):
122 include_functions, include_filenames, verbose = parse_arguments(args)