Skip to content

Commit f64a65b

Browse files
authored
Update Lib/idlelib/colorizer.py
1 parent 7cca44f commit f64a65b

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

Lib/idlelib/colorizer.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ def make_pat():
4747
name not in keyword.kwlist]
4848
builtin = r"([^.'\"\\#]\b|^)" + any("BUILTIN", builtinlist) + r"\b"
4949
comment = any("COMMENT", [r"#[^\n]*"])
50-
# Added 't' prefix and other combinations to support Python 3.14 template strings (PEP 701)
5150
stringprefix = r"(?i:r|u|f|t|fr|rf|b|br|rb|rt|tr)?"
5251
sqstring = stringprefix + r"'[^'\\\n]*(\\.[^'\\\n]*)*'?"
5352
dqstring = stringprefix + r'"[^"\\\n]*(\\.[^"\\\n]*)*"?'

0 commit comments

Comments
 (0)