*** django1.9.2/django/template/response.py	Sat Feb 20 16:41:38 2016
--- django/template/response.py	Sat Feb 20 16:43:22 2016
*************** from django.http import HttpResponse
*** 4,10 ****
  from django.utils import six
  from django.utils.deprecation import RemovedInDjango110Warning

! from .backends.django import Template as BackendTemplate
  from .base import Template
  from .context import Context, RequestContext, _current_app_undefined
  from .loader import get_template, select_template
--- 4,10 ----
  from django.utils import six
  from django.utils.deprecation import RemovedInDjango110Warning

! from .backends.django import DjangoTemplates, Template as BackendTemplate
  from .base import Template
  from .context import Context, RequestContext, _current_app_undefined
  from .loader import get_template, select_template
*************** class SimpleTemplateResponse(HttpRespons
*** 25,31 ****
                  "anymore. It may be a backend-specific template like those "
                  "created by get_template().".format(self.__class__.__name__),
                  RemovedInDjango110Warning, stacklevel=2)
!             template = BackendTemplate(template)

          # It would seem obvious to call these next two members 'template' and
          # 'context', but those names are reserved as part of the test Client
--- 25,31 ----
                  "anymore. It may be a backend-specific template like those "
                  "created by get_template().".format(self.__class__.__name__),
                  RemovedInDjango110Warning, stacklevel=2)
!             template = BackendTemplate(template, DjangoTemplates)

          # It would seem obvious to call these next two members 'template' and
          # 'context', but those names are reserved as part of the test Client
*************** class SimpleTemplateResponse(HttpRespons
*** 95,101 ****
                  "{}.".format(
                      self.__class__.__name__, new_template.__class__.__name__),
                  RemovedInDjango110Warning, stacklevel=2)
!             new_template = BackendTemplate(new_template)
          return new_template

      def resolve_context(self, context):
--- 95,101 ----
                  "{}.".format(
                      self.__class__.__name__, new_template.__class__.__name__),
                  RemovedInDjango110Warning, stacklevel=2)
!             new_template = BackendTemplate(new_template, DjangoTemplates)
          return new_template

      def resolve_context(self, context):
