# HG changeset patch # User timeless # Date 2015-10-15 21:28:26 # Node ID b81b8dbecc26d78f94cfe3c657400f995ce7b5c3 # Parent df31e126b7067f626d518b7c269e60f7de16cd1f check-code: allow argument passing py2.6ism this backs out 131f7fe06e9e, because Python2.5 support was dropped diff --git a/contrib/check-code.py b/contrib/check-code.py --- a/contrib/check-code.py +++ b/contrib/check-code.py @@ -199,7 +199,6 @@ utestfilters = [ pypats = [ [ - (r'\([^)]*\*\w[^()]+\w+=', "can't pass varargs with keyword in Py2.5"), (r'^\s*def\s*\w+\s*\(.*,\s*\(', "tuple parameter unpacking not available in Python 3+"), (r'lambda\s*\(.*,.*\)',