diff options
| author | Carl Meyer <carl@oddbird.net> | 2010-10-10 02:16:33 +0000 |
|---|---|---|
| committer | Carl Meyer <carl@oddbird.net> | 2010-10-10 02:16:33 +0000 |
| commit | 501546df6f4cbb56ea94da073e8206804fef3040 (patch) | |
| tree | 767b30579c796b9fd9c94d1f8d30a4efb15d6d65 /docs/internals | |
| parent | d084439c415e2037a1d13b217b044fd1bf3b39cb (diff) | |
Fixed #12226 -- Deprecated test client Response.template attribute in favor of templates attribute, which is always a list. Thanks Russell for patch review.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14106 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs/internals')
| -rw-r--r-- | docs/internals/deprecation.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt index b313871128..edd3a1d2ec 100644 --- a/docs/internals/deprecation.txt +++ b/docs/internals/deprecation.txt @@ -102,6 +102,12 @@ their deprecation, as per the :ref:`Django deprecation policy * The ``mod_python`` request handler has been deprecated since the 1.3 release. The ``mod_wsgi`` handler should be used instead. + * The ``template`` attribute on :class:`~django.test.client.Response` + objects returned by the :ref:`test client <test-client>` has been + deprecated since the 1.3 release. The + :attr:`~django.test.client.Response.templates` attribute should be + used instead. + * 2.0 * ``django.views.defaults.shortcut()``. This function has been moved to ``django.contrib.contenttypes.views.shortcut()`` as part of the |
