Skip to content

Commit 1080525

Browse files
committed
Python: Add missing test stub.
1 parent 2518ac5 commit 1080525

File tree

1 file changed

+15
-0
lines changed
  • python/ql/test/query-tests/Security/lib

1 file changed

+15
-0
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
2+
class Environment(object):
3+
4+
def __init__(self, loader, autoescape):
5+
pass
6+
7+
def select_autoescape(files=[]):
8+
def autoescape(template_name):
9+
pass
10+
return autoescape
11+
12+
class FileSystemLoader(object):
13+
14+
def __init__(self, searchpath):
15+
pass

0 commit comments

Comments
 (0)