We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 494d779 commit 0f0c1e1Copy full SHA for 0f0c1e1
python/ql/test/library-tests/frameworks/django-v2-v3/template_test.py
@@ -1,13 +1,13 @@
1
from django.template import Template, engines
2
from django.urls import path
3
-from django.http.response import HttpResponse,
+from django.http.response import HttpResponse
4
5
def a(request): # $requestHandler
6
t = Template("abc").render() # $templateConstruction="abc"
7
return HttpResponse(t) # $HttpResponse
8
9
def b(request): # $requestHandler
10
- # This case is not yet supported
+ # This case is not currently supported
11
t = django.template.engines["django"].from_string("abc") # $MISSING:templateConstruction="abc"
12
13
0 commit comments