diff -r 1eb2fc21da12 -r e2472b12c842 contrib/check-code.py --- a/contrib/check-code.py Wed Feb 20 18:02:28 2019 -0500 +++ b/contrib/check-code.py Sun Jan 13 20:27:00 2019 -0500 @@ -233,6 +233,7 @@ pypats = [ [ + (r'\\$', 'Use () to wrap long lines in Python, not \\'), (r'^\s*def\s*\w+\s*\(.*,\s*\(', "tuple parameter unpacking not available in Python 3+"), (r'lambda\s*\(.*,.*\)',