Travis CI: Run more f-string tests on Python 3.7

This commit is contained in:
cclauss
2019-01-12 19:33:22 +01:00
parent 7c9691b5a7
commit 6cbaef4ba5
7 changed files with 7 additions and 7 deletions

View File

@@ -104,7 +104,7 @@ if __name__ == '__main__':
""".split()))
remain_tokens = set(tokens) - opcode_set
import re
remain_tokens = set([re.sub('_\d+$', '', t) for t in remain_tokens])
remain_tokens = set([re.sub(r'_\d+$', '', t) for t in remain_tokens])
remain_tokens = set([re.sub('_CONT$', '', t) for t in remain_tokens])
remain_tokens = set(remain_tokens) - opcode_set
print(remain_tokens)