Lines Matching refs:p
57 classes = [p for arg in args.patterns
58 for p in re.split(r'[\s,]', arg)
59 if p.strip()]
90 p = argparse.ArgumentParser(formatter_class=argparse.RawDescriptionHelpFormatter)
91 p.add_argument('filenames', nargs='+')
92 p.add_argument('--passes', type=int, default=1,
94 p.add_argument('--pattern', required=True, action='append',
97 p.add_argument('--inplace', '-i', action='store_true',
99 p.add_argument('--dry-run', action='store_true',
101 p.add_argument('--force', '-f', action='store_true',
103 p.add_argument('--diff', action='store_true',
105 p.add_argument('--debug', '-d', action='store_true',
107 p.add_argument('--verbose', '-v', action='store_true',
109 p.add_argument('--table', action='store_true',
111 p.add_argument_group("Valid pattern names",
113 args = p.parse_args()
120 process_all_files(p, args)