Skip to content

Commit d1911d2

Browse files
committed
More lint
1 parent 55bb564 commit d1911d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

uncompyle6/semantics/pysource.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,7 @@ def customize(self, customize):
893893
p2 = (1, -2, ", ")
894894
if op == "CALL_FUNCTION_VAR":
895895
# Python 3.5 only puts optional args (the VAR part)
896-
# lowest down the stack
896+
# the lowest down the stack
897897
if self.version == (3, 5):
898898
if str == "%c(%C, ":
899899
entry = ("%c(*%C, %c)", 0, p2, -2)
@@ -917,7 +917,7 @@ def customize(self, customize):
917917
elif op == "CALL_FUNCTION_VAR_KW":
918918
str += "*%c, **%c)"
919919
# Python 3.5 only puts optional args (the VAR part)
920-
# lowest down the stack
920+
# the lowest down the stack
921921
na = v & 0xFF # positional parameters
922922
if self.version == (3, 5) and na == 0:
923923
if p2[2]:
@@ -1194,7 +1194,7 @@ def build_ast(
11941194
return transform_tree
11951195

11961196
# The bytecode for the end of the main routine has a
1197-
# "return None". However you can't issue a "return" statement in
1197+
# "return None". However, you can't issue a "return" statement in
11981198
# main. So as the old cigarette slogan goes: I'd rather switch (the token stream)
11991199
# than fight (with the grammar to not emit "return None").
12001200
if self.hide_internal:

0 commit comments

Comments
 (0)