contrib/check-code.py
changeset 41761 e2472b12c842
parent 41544 7d1798ec92a3
child 41821 14e8d042993a
--- 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*\(.*,.*\)',