Skip to content

Commit 9167860

Browse files
Add support for Python 3.14 t-string prefixes in IDLE colorizer and tests
1 parent bf94458 commit 9167860

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Lib/idlelib/idle_test/test_colorizer.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ async def f(): await g()
3636
# All valid prefixes for unicode and byte strings should be colored.
3737
r'x', u'x', R'x', U'x', f'x', F'x'
3838
fr'x', Fr'x', fR'x', FR'x', rf'x', rF'x', Rf'x', RF'x'
39+
tr'x', Tr'x', tR'x', TR'x', rt'x', rT'x', Rt'x', RT'x'
3940
b'x',B'x', br'x',Br'x',bR'x',BR'x', rb'x', rB'x',Rb'x',RB'x'
4041
# Invalid combinations of legal characters should be half colored.
4142
ur'x', ru'x', uf'x', fu'x', UR'x', ufr'x', rfu'x', xf'x', fx'x'

0 commit comments

Comments
 (0)