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