Lines Matching defs:args
52 args = None
54 global args
64 args = parser.parse_args()
65 args.exclude = (args.exclude or []) + AUTO_EXCLUDE_PATTERNS
66 args.exclude += ['^' + re.escape(x) + '$' for x in AUTO_EXCLUDE]
67 if not args.input:
68 args.input=DEFAULT_INPUT
72 if args.verbose:
79 exclude_patterns = [re.compile(x) for x in args.exclude]
97 for filename in args.input: