Lines Matching refs:args
237 # Now we'll use the attrs dictionary (ultimately, keyword args from
276 # no-user-cfg is handled before other command line args
277 # because other args override the config files, and this
475 args = parser.getopt(args=self.script_args, object=self)
482 while args:
483 args = self._parse_command_opts(parser, args)
484 if args is None: # user asked for help (and got it)
517 def _parse_command_opts(self, parser, args):
519 'parser' must be a FancyGetopt instance; 'args' must be the list
521 we are about to parse). Returns a new version of 'args' with
530 command = args[0]
578 (args, opts) = parser.getopt(args[1:])
606 return args