Mercurial > public > mercurial-scm > hg-stable
diff tests/filterpyflakes.py @ 32543:50eaccb8353f
filterpyflakes: allow reexporting pure symbols from cffi modules
cffi modules will do 'from ..pure.<module> import *'.
author | Yuya Nishihara <yuya@tcha.org> |
---|---|
date | Sun, 28 May 2017 17:36:01 +0900 |
parents | 80e3002cd29e |
children | 6029939f7e98 |
line wrap: on
line diff
--- a/tests/filterpyflakes.py Tue May 02 22:28:18 2017 +0900 +++ b/tests/filterpyflakes.py Sun May 28 17:36:01 2017 +0900 @@ -13,6 +13,9 @@ 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", ] keep = True