xotl.tools.future.subprocess - Extensions to subprocess stardard module

New in version 1.2.1.

This module contains extensions to the subprocess standard library module. It may be used as a replacement of the standard.

xotl.tools.future.subprocess.call_and_check_output(args, *, stdin=None, shell=False)[source]

This function combines the result of both call and check_output (from the standard library module).

Returns a tuple (retcode, output, err_output).