Merge branch 'Issue-165-literal-string-interpolation-f-strings' into master

This commit is contained in:
Michael Hansen
2020-10-20 21:08:19 -07:00
11 changed files with 250 additions and 24 deletions

View File

@@ -145,6 +145,7 @@ def string_token(line, n_line, pysrc):
while True:
end = line.find(quotes, start)
if end > 0 and line[end - 1] == '\\':
content += line[start:end + 1]
start = end + 1
continue
elif end >= 0: