feat: Add PEP 750 template string support#305
Merged
amaanq merged 1 commit intotree-sitter:masterfrom Sep 11, 2025
Merged
Conversation
Contributor
|
Hi @koxudaxi, I'm not a maintainer here but want to thank you for your changes, which look great to me. I've integrated them in a fork of this repository since I have little hopes that this gets merged here soon. The fork is published on crates.io - if you need to have it published elsewhere let me know. |
27ab141 to
6f562d4
Compare
amaanq
approved these changes
Sep 11, 2025
Co-authored-by: Amaan Qureshi <contact@amaanq.com>
6f562d4 to
8fecdc8
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds parsing support for PEP 750 Template Strings, a new Python 3.14 feature that introduces t-strings for safer templating.
Overview
Template strings use the
tprefix and createTemplateobjects instead of regular strings, enabling secure HTML/SQL templating and DSL support:Changes
Templateflag to scanner for t-prefixed string literalst/Tprefixes (supportstr/rtcombinations)Related
Template strings will be available in Python 3.14.0b1+ and officially released in Python 3.14.