Skip to content

Commit

Permalink
Test update
Browse files Browse the repository at this point in the history
  • Loading branch information
joefarebrother committed Nov 22, 2024
1 parent 190afe6 commit 2879560
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
from django.template import Template, engines
from django.urls import path
from django.http.response import HttpResponse,
from django.http.response import HttpResponse

def a(request): # $requestHandler
t = Template("abc").render() # $templateConstruction="abc"
return HttpResponse(t) # $HttpResponse

def b(request): # $requestHandler
# This case is not yet supported
# This case is not currently supported
t = django.template.engines["django"].from_string("abc") # $MISSING:templateConstruction="abc"
return HttpResponse(t) # $HttpResponse

Expand Down

0 comments on commit 2879560

Please sign in to comment.