Lines Matching refs:procs
171 procs = spec(parser)
172 _add_procs(processors, procs)
179 def _add_procs(flattened, procs):
180 # XXX Fail on non-empty, non-callable procs?
181 if not procs:
183 if callable(procs):
184 flattened.append(procs)
186 #processors.extend(p for p in procs if callable(p))
187 for proc in procs:
459 procs = argspec(parser)
460 _add_procs(processors, procs)