File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1716,7 +1716,8 @@ def run_tail(
17161716 encoding = None ,
17171717):
17181718 """
1719- Run a subprocess in the background and collect its output and exit status.
1719+ Run a command then await for it to finish up to timeout and return the
1720+ Tail object (alive or dead, allows reading output, no stdin interaction).
17201721
17211722 Run command as a subprocess. Call output_func with each line of output
17221723 from the subprocess (prefixed by output_prefix). Call termination_func
@@ -1769,7 +1770,8 @@ def run_bg(
17691770 encoding = None ,
17701771):
17711772 """
1772- Run a subprocess in the background and collect its output and exit status.
1773+ Run a command then await for it to finish up to timeout and return the
1774+ Expect object (alive or dead, allows interaction).
17731775
17741776 Run command as a subprocess. Call output_func with each line of output
17751777 from the subprocess (prefixed by output_prefix). Call termination_func
You can’t perform that action at this time.
0 commit comments