Files
codeql/python/ql/test/library-tests/frameworks/Genshi/template_test.py
2024-12-09 19:55:42 +00:00

9 lines
399 B
Python

from genshi.template.text import TextTemplate, NewTextTemplate, OldTextTemplate
from genshi.template.markup import MarkupTemplate
def test():
a = TextTemplate("abc") # $ templateConstruction="abc"
a = OldTextTemplate("abc") # $ templateConstruction="abc"
a = NewTextTemplate("abc") # $ templateConstruction="abc"
a = MarkupTemplate("abc") # $ templateConstruction="abc"
return a