In this python code line 256 to 266
this use run in sarge
p = run(
cmd,
input=self.feeder,
async_=True,
stdout=self.stdout or Capture(timeout=0.1, buffer_size=1),
stderr=self.stderr or Capture(timeout=0.1, buffer_size=1),
cwd=self.cwd,
env=self.env,
shell=self.shell,
**run_args
)
I trouble with understand OR logical operator stdout=self.stdout or Capture(timeout=0.1, buffer_size=1)
this OR
two object in parameter ?