Mercurial > hg
view tests/filterpyflakes.py @ 14141:bd1cbfe5db5c
bundler: make parsechunk return the base revision of the delta
author | Benoit Boissinot <benoit.boissinot@ens-lyon.org> |
---|---|
date | Sat, 30 Apr 2011 10:00:41 +0200 |
parents | 82f0412ef7de |
children | 419539ea79cb |
line wrap: on
line source
#!/usr/bin/env python # Filter output by pyflakes to control which warnings we check import sys, re for line in sys.stdin: # We whitelist tests if not re.search("imported but unused", line): continue sys.stdout.write(line) print