Home | History | Annotate | Download | only in python2.7

Lines Matching defs:args

36             # User gave us a command line, split it into name and args
141 args = ['%s']
164 self.args = ["%s"]
168 self.args = name[1:]
173 for arg in self.args]
190 for arg in self.args]
215 def _invoke(self, args, remote, autoraise):
223 cmdline = [self.name] + raise_opt + args
273 args = [arg.replace("%s", url).replace("%action", action)
275 success = self._invoke(args, True, autoraise)
278 args = [arg.replace("%s", url) for arg in self.args]
279 return self._invoke(args, False, False)
685 opts, args = getopt.getopt(sys.argv[1:], 'ntd')
694 if len(args) != 1:
698 url = args[0]