tests/filtertraceback.py
author Augie Fackler <raf@durin42.com>
Mon, 02 Nov 2020 14:26:18 -0500
branchstable
changeset 45764 a3b1a6194ed9
parent 44656 d359f0d1a3d3
child 45849 c102b704edb5
permissions -rwxr-xr-x
Added tag 5.6 for changeset 18c17d63fdab

#!/usr/bin/env python

# Filters traceback lines from stdin.

from __future__ import absolute_import, print_function

import io
import sys

if sys.version_info[0] >= 3:
    # Prevent \r from being inserted on Windows.
    sys.stdout = io.TextIOWrapper(
        sys.stdout.buffer,
        sys.stdout.encoding,
        sys.stdout.errors,
        newline="\n",
        line_buffering=sys.stdout.line_buffering,
    )

state = 'none'

for line in sys.stdin:
    if state == 'none':
        if line.startswith('Traceback '):
            state = 'tb'

    elif state == 'tb':
        if line.startswith('  File '):
            state = 'file'
            continue

        elif not line.startswith(' '):
            state = 'none'

    elif state == 'file':
        # Ignore lines after "  File "
        state = 'tb'
        continue

    print(line, end='')