43
48
def __init__(self, path):
51
54
def run(self, *args, **kwargs):
52
55
raise NotImplementedError('should not be called on %r' % self)
55
57
def run_argv(self, argv):
56
58
return os.spawnv(os.P_WAIT, self.path, [self.path] + argv)
60
61
m = 'external command from %s\n\n' % self.path
61
62
pipe = os.popen('%s --help' % self.path)