Lines Matching refs:args
81 # crack args (sys.argv[1:] is normal) & compare;
84 def main(args):
87 opts, args = getopt.getopt(args, "qr:")
102 if args:
103 return fail("no args allowed with -r option")
108 if len(args) != 2:
109 return fail("need 2 filename args")
110 f1name, f2name = args
124 args = sys.argv[1:]
125 if "-profile" in args:
127 args.remove("-profile")
129 profile.run("main(args)", statf)
133 main(args)