コード例 #1
0
ファイル: virsh_boot.py プロジェクト: uyvan/tp-libvirt
def get_stripped_output(cont, custom_codes=None):
    """
    Return the STDOUT and STDERR output without the console
    codes escape and sequences of the process so far.

    :param cont: input string
    :param custom_codes: The special console codes escape
    """
    return astring.strip_console_codes(cont, custom_codes)
コード例 #2
0
ファイル: virsh_boot.py プロジェクト: balamuruhans/tp-libvirt
def get_stripped_output(cont, custom_codes=None):
    """
    Return the STDOUT and STDERR output without the console
    codes escape and sequences of the process so far.

    :param cont: input string
    :param custom_codes: The special console codes escape
    """
    return astring.strip_console_codes(cont, custom_codes)