@@ -893,7 +893,7 @@ def customize(self, customize):
893
893
p2 = (1 , - 2 , ", " )
894
894
if op == "CALL_FUNCTION_VAR" :
895
895
# Python 3.5 only puts optional args (the VAR part)
896
- # lowest down the stack
896
+ # the lowest down the stack
897
897
if self .version == (3 , 5 ):
898
898
if str == "%c(%C, " :
899
899
entry = ("%c(*%C, %c)" , 0 , p2 , - 2 )
@@ -917,7 +917,7 @@ def customize(self, customize):
917
917
elif op == "CALL_FUNCTION_VAR_KW" :
918
918
str += "*%c, **%c)"
919
919
# Python 3.5 only puts optional args (the VAR part)
920
- # lowest down the stack
920
+ # the lowest down the stack
921
921
na = v & 0xFF # positional parameters
922
922
if self .version == (3 , 5 ) and na == 0 :
923
923
if p2 [2 ]:
@@ -1194,7 +1194,7 @@ def build_ast(
1194
1194
return transform_tree
1195
1195
1196
1196
# 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
1198
1198
# main. So as the old cigarette slogan goes: I'd rather switch (the token stream)
1199
1199
# than fight (with the grammar to not emit "return None").
1200
1200
if self .hide_internal :
0 commit comments