mirror of
https://github.com/github/codeql.git
synced 2026-02-15 14:33:40 +01:00
9 lines
399 B
Python
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 |