Python: Add missing test stub.

This commit is contained in:
Mark Shannon
2018-11-27 14:14:32 +00:00
parent 2518ac561e
commit 1080525d7d

View File

@@ -0,0 +1,15 @@
class Environment(object):
def __init__(self, loader, autoescape):
pass
def select_autoescape(files=[]):
def autoescape(template_name):
pass
return autoescape
class FileSystemLoader(object):
def __init__(self, searchpath):
pass