Lines Matching defs:opts
92 def check(filename, opts):
96 return mapfilechk(fh, verbose=opts['verbose'],
103 def walker(opts, dirname, fnames):
108 if not path in opts['exclude']:
109 opts['status'] |= check(path, opts)
111 if path in opts['exclude']:
114 def walkpath(path, opts):
116 os.path.walk(path, walker, opts)
118 if not path in opts['exclude']:
119 opts['status'] |= check(path, opts)
129 opts, args = getopt.getopt(sys.argv[1:], 'avx:')
134 for opt, arg in opts: