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