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