You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As per late change (for security), Templates (t-strings) can not be concatenated with regular strings.
Python 3.14 RC1 disallows it:
Python 3.14.0rc1 (tags/v3.14.0rc1:48f8831, Jul 22 2025, 17:09:57) [MSC v.1944 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> t''+''
Traceback (most recent call last):
File "<python-input-0>", line 1, in <module>
t''+''
~~~^~~
TypeError: can only concatenate string.templatelib.Template (not "str") to string.templatelib.Template