File: filterpyflakes.py

package info (click to toggle)
mercurial 7.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 46,124 kB
  • sloc: python: 214,491; ansic: 56,606; tcl: 3,715; sh: 1,879; lisp: 1,483; cpp: 864; makefile: 792; javascript: 649; xml: 36
file content (42 lines) | stat: -rwxr-xr-x 1,429 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python3

# Filter output by pyflakes to control which warnings we check


import re
import sys

lines = []
for line in sys.stdin:
    # We blacklist tests that are too noisy for us
    pats = [
        r"undefined name 'WindowsError'",
        r"redefinition of unused '[^']+' from line",
        # for cffi, allow re-exports from pure.*
        r"cffi/[^:]*:.*\bimport \*' used",
        r"cffi/[^:]*:.*\*' imported but unused",
        r"mercurial/interfaces/types.py:.+' imported but unused",
        r"mercurial/hgweb/hgweb_mod.py:.+ 'from \.hgweb_mod_inner import \*' used.+",
        r"mercurial/hgweb/hgweb_mod.py:.+ '\.hgweb_mod_inner\.\*' imported but unused",
        r"mercurial/hgweb/hgwebdir_mod.py:.+ 'from \.hgwebdir_mod_inner import \*' used.+",
        r"mercurial/hgweb/hgwebdir_mod.py:.+ '\.hgwebdir_mod_inner.\*' imported but unused",
        r"mercurial/hgweb/wsgicgi.py:.+ 'from \.wsgicgi_inner import \*' used.+",
        r"mercurial/hgweb/wsgicgi.py:.+ '\.wsgicgi_inner\.\*' imported but unused",
    ]

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

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