File tree Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Expand file tree Collapse file tree 2 files changed +1
-7
lines changed Original file line number Diff line number Diff line change 448.1 (unreleased)
55----------------
66
7- - Allow to use the package with Python 3.14.
7+ - Allow to use the package with Python 3.14 including t-string support .
88
99
10108.1a1.dev0 (2025-03-20)
Original file line number Diff line number Diff line change @@ -573,11 +573,6 @@ def visit_TemplateStr(self, node):
573573 default.
574574 Those rendering logic would be affected by RestrictedPython as well.
575575 """
576- self .warn (
577- node ,
578- 'TemplateStr statements are not yet allowed, '
579- 'please use f-strings or a real template engine instead.' )
580- # self.not_allowed(node)
581576 return self .node_contents_visit (node )
582577
583578 def visit_Interpolation (self , node ):
@@ -589,7 +584,6 @@ def visit_Interpolation(self, node):
589584 to make use of Template Strings, the security implications of
590585 Interpolations are limited in the context of RestrictedPython.
591586 """
592- # self.not_allowed(node)
593587 return self .node_contents_visit (node )
594588
595589 def visit_JoinedStr (self , node ):
You can’t perform that action at this time.
0 commit comments