tests/filterpyflakes.py
author Augie Fackler <raf@durin42.com>
Thu, 02 Mar 2017 20:19:43 -0500
branchstable
changeset 31138 0c57328af1bf
parent 30421 21772a6a7861
child 32277 80e3002cd29e
permissions -rwxr-xr-x
Added tag 4.1.1 for changeset 25703b624d27

#!/usr/bin/env python

# Filter output by pyflakes to control which warnings we check

from __future__ import absolute_import, print_function

import re
import sys

lines = []
for line in sys.stdin:
    # We blacklist tests that are too noisy for us
    pats = [
        r"undefined name '(WindowsError|memoryview)'",
        r"redefinition of unused '[^']+' from line",
    ]

    keep = True
    for pat in pats:
        if re.search(pat, line):
            keep = False
            break # pattern matches
    if keep:
        fn = line.split(':', 1)[0]
        f = open(fn)
        data = f.read()
        f.close()
        if 'no-' 'check-code' in data:
            continue
        lines.append(line)

for line in lines:
    sys.stdout.write(line)
print()

# self test of "undefined name" detection for other than 'memoryview'
if False:
    print(memoryview)
    print(undefinedname)