mirror of
https://github.com/github/codeql.git
synced 2026-03-28 10:18:17 +01:00
10 lines
191 B
Python
10 lines
191 B
Python
|
|
|
|
def genshi1():
|
|
from genshi.template import MarkupTemplate
|
|
tmpl = MarkupTemplate('sink')
|
|
|
|
|
|
def genshi2():
|
|
from genshi.template import TextTemplate
|
|
tmpl = TextTemplate('sink') |