mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
21 lines
356 B
Python
21 lines
356 B
Python
|
|
class Environment(object):
|
|
|
|
def __init__(self, loader, autoescape):
|
|
pass
|
|
|
|
class Template(object):
|
|
|
|
def __init__(self, source, autoescape):
|
|
pass
|
|
|
|
def select_autoescape(files=[]):
|
|
def autoescape(template_name):
|
|
pass
|
|
return autoescape
|
|
|
|
class FileSystemLoader(object):
|
|
|
|
def __init__(self, searchpath):
|
|
pass
|