@@ -410,7 +410,7 @@ def signature(self, node, frame, extra_kwargs=None):
410
410
"""Writes a function call to the stream for the current node.
411
411
A leading comma is added automatically. The extra keyword
412
412
arguments may not include python keywords otherwise a syntax
413
- error could occur . The extra keyword arguments should be given
413
+ error could occour . The extra keyword arguments should be given
414
414
as python dict.
415
415
"""
416
416
# if any of the given keyword arguments is a python keyword
@@ -1044,13 +1044,13 @@ def visit_For(self, node, frame):
1044
1044
if node .test :
1045
1045
loop_filter_func = self .temporary_identifier ()
1046
1046
test_frame .symbols .analyze_node (node , for_branch = 'test' )
1047
- self .writeline ('%s(filter ):' % self .func (loop_filter_func ), node .test )
1047
+ self .writeline ('%s(fiter ):' % self .func (loop_filter_func ), node .test )
1048
1048
self .indent ()
1049
1049
self .enter_frame (test_frame )
1050
1050
self .writeline (self .environment .is_async and 'async for ' or 'for ' )
1051
1051
self .visit (node .target , loop_frame )
1052
1052
self .write (' in ' )
1053
- self .write (self .environment .is_async and 'auto_aiter(filter )' or 'filter ' )
1053
+ self .write (self .environment .is_async and 'auto_aiter(fiter )' or 'fiter ' )
1054
1054
self .write (':' )
1055
1055
self .indent ()
1056
1056
self .writeline ('if ' , node .test )
@@ -1256,7 +1256,7 @@ def visit_Output(self, node, frame):
1256
1256
except nodes .Impossible :
1257
1257
body .append (child )
1258
1258
continue
1259
- # the frame can't be volatile here, because otherwise the
1259
+ # the frame can't be volatile here, becaus otherwise the
1260
1260
# as_const() function would raise an Impossible exception
1261
1261
# at that point.
1262
1262
try :
0 commit comments