whitespace cleanup
authorLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 31 Mar 2020 13:04:52 +0000 (14:04 +0100)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Tue, 31 Mar 2020 13:04:57 +0000 (14:04 +0100)
src/soc/decoder/power_pseudo.py

index 5e9c5179e8d4cc6df2bfa7f703d78f6b06aff681..66f21482c2ce27be4b50bf0d1c1fe7fa84adf106 100644 (file)
@@ -207,7 +207,7 @@ def indentation_filter(tokens):
                 # At the same level
                 pass
             elif depth > levels[-1]:
-                raise IndentationError("indentation increase but not in new block")
+                raise IndentationError("indent increase but not in new block")
             else:
                 # Back up; but only if it matches a previous level
                 try:
@@ -516,7 +516,8 @@ class PowerParser:
             p[0] = p[2]
 
 
-    # varargslist: (fpdef ['=' test] ',')* ('*' NAME [',' '**' NAME] | '**' NAME) |
+    # varargslist: (fpdef ['=' test] ',')* ('*' NAME [',' '**' NAME] |
+    # '**' NAME) |
     # highly simplified
     def p_varargslist(self, p):
         """varargslist : varargslist COMMA NAME
@@ -788,7 +789,8 @@ class PowerParser:
 
 
 
-    # arglist: (argument ',')* (argument [',']| '*' test [',' '**' test] | '**' test)
+    # arglist: (argument ',')* (argument [',']| '*' test [',' '**' test]
+    # | '**' test)
     # XXX INCOMPLETE: this doesn't allow the trailing comma
     def p_arglist(self, p):
         """arglist : arglist COMMA argument