Lines Matching full:executable
102 """Given an executable filename, find in the PATH or find absolute path.
104 filename An executable filename (string)
169 def __init__(self, executable):
170 """Create object with executable.
172 executable Program to execute (string)
174 self.long_name = executable
175 self.name = os.path.basename(executable) # name
178 self.executable = GetRealPath(executable) # name of the program
192 if not self.executable:
196 finfo = os.stat(self.executable)
200 % (self.executable, FLAGS.help_flag))
205 [self.executable, FLAGS.help_flag])
239 exec_mod_start = self.executable + ':'
418 if self.desc[i].find(self.executable) >= 0:
419 self.desc[i] = self.desc[i].replace(self.executable, self.name)
500 if modname.find(self.info.executable) >= 0:
501 mod = modname.replace(self.info.executable, self.info.name)