diff --git a/test/completion/std.py b/test/completion/std.py index 409dafb4..46331789 100644 --- a/test/completion/std.py +++ b/test/completion/std.py @@ -13,8 +13,9 @@ c.match().start() #? int() re.match(r'a', 'a').start() -#? int() -next(re.finditer('a', 'a')).start() +for a in re.finditer('a', 'a'): + #? int() + a.start() #? str() re.sub('a', 'a')