codeql
codeql copied to clipboard
Python: Add support for template string literals
Extends the parser and libraries to support the new t-string syntax introduced in Python 3.14 (cf. PEP-750)
Due to the complexity of our current handling of f-strings, I opted not to extend the existing f-string support to also handle t-strings. Instead, t-strings are a completely separate (and much simpler) construction.