1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #26052 -- Moved conditional_content_removal() processing to the test client.

This commit is contained in:
Tim Graham
2016-04-25 07:56:07 -04:00
parent bd145e7209
commit bb0b4b705b
6 changed files with 33 additions and 49 deletions

View File

@@ -778,6 +778,11 @@ Miscellaneous
attribute to ``False`` to disable it. You could also add the ``novalidate``
attribute to ``<form>`` if you don't want browser validation.
* The WSGI handler no longer removes content of responses from ``HEAD``
requests or responses with a ``status_code`` of 100-199, 204, or 304. Most
Web servers already implement this behavior. Responses retrieved using the
Django test client continue to have these "response fixes" applied.
.. _deprecated-features-1.10:
Features deprecated in 1.10