From d1911d2487015952079e3fa6b78f156bd4c66b4f Mon Sep 17 00:00:00 2001 From: rocky Date: Sun, 27 Nov 2022 04:14:46 -0500 Subject: [PATCH] More lint --- uncompyle6/semantics/pysource.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uncompyle6/semantics/pysource.py b/uncompyle6/semantics/pysource.py index 89fc07ba..e809a643 100644 --- a/uncompyle6/semantics/pysource.py +++ b/uncompyle6/semantics/pysource.py @@ -893,7 +893,7 @@ class SourceWalker(GenericASTTraversal, NonterminalActions, ComprehensionMixin): p2 = (1, -2, ", ") if op == "CALL_FUNCTION_VAR": # Python 3.5 only puts optional args (the VAR part) - # lowest down the stack + # the lowest down the stack if self.version == (3, 5): if str == "%c(%C, ": entry = ("%c(*%C, %c)", 0, p2, -2) @@ -917,7 +917,7 @@ class SourceWalker(GenericASTTraversal, NonterminalActions, ComprehensionMixin): elif op == "CALL_FUNCTION_VAR_KW": str += "*%c, **%c)" # Python 3.5 only puts optional args (the VAR part) - # lowest down the stack + # the lowest down the stack na = v & 0xFF # positional parameters if self.version == (3, 5) and na == 0: if p2[2]: @@ -1194,7 +1194,7 @@ class SourceWalker(GenericASTTraversal, NonterminalActions, ComprehensionMixin): return transform_tree # The bytecode for the end of the main routine has a - # "return None". However you can't issue a "return" statement in + # "return None". However, you can't issue a "return" statement in # main. So as the old cigarette slogan goes: I'd rather switch (the token stream) # than fight (with the grammar to not emit "return None"). if self.hide_internal: