tksn.adb.call module¶
Implementation of subprocess invocation
| copyright: |
|
|---|---|
| license: | MIT |
-
exception
tksn.adb.call.CallError[source]¶ Call error
Thrown when error occurs upon invocation of external commands.
-
tksn.adb.call.call_async(command, out=None, err=None)[source]¶ Call given command as subprocess, and returns immediately.
Parameters: - command (sequence) – list of command strings
- out (file) – file object used as stdout of the subprocess.
- err (file) – file object used as stderr of the subprocess.
Returns: Popen object
Return type: subprocess.Popen