summaryrefslogtreecommitdiff
path: root/docs/internals
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2012-06-30 21:25:16 +0200
committerClaude Paroz <claude@2xlibre.net>2012-06-30 21:27:47 +0200
commitda200c5e35cdbb617572977bcbf97fae33920b2e (patch)
tree07c028161c8975172b995aaf8beceec7649e7ef0 /docs/internals
parentdeed192dda621f1cdc8eb7240f1e5914045402dd (diff)
Fixed #16519 -- Deprecated mimetype kwarg of HttpResponse __init__
This keyword was already deprecated in the code (supported for backwards compatibility only), but never formally deprecated. Thanks Paul McMillan for the report and yasar11732 for the initial patch.
Diffstat (limited to 'docs/internals')
-rw-r--r--docs/internals/deprecation.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/internals/deprecation.txt b/docs/internals/deprecation.txt
index f338adac33..9359c82e46 100644
--- a/docs/internals/deprecation.txt
+++ b/docs/internals/deprecation.txt
@@ -280,6 +280,9 @@ these changes.
specified as a plain string instead of a tuple will be removed and raise an
exception.
+* The ``mimetype`` argument to :class:`~django.http.HttpResponse` ``__init__``
+ will be removed (``content_type`` should be used instead).
+
2.0
---