50
47
def __init__(self, path):
56
55
def run(self, *args, **kwargs):
57
56
raise NotImplementedError('should not be called on %r' % self)
60
60
return os.spawnv(os.P_WAIT, self.path, [self.path] + argv)
63
64
m = 'external command from %s\n\n' % self.path
64
65
pipe = os.popen('%s --help' % self.path)