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

Refs #17235 -- Made MultiPartParser leave request.POST immutable.

This commit is contained in:
Vinay Karanam
2016-11-16 18:52:38 +05:30
committed by Tim Graham
parent 183f501540
commit 4a246a02bd
5 changed files with 26 additions and 1 deletions

View File

@@ -634,6 +634,10 @@ Miscellaneous
* The undocumented ``django.utils.functional.lazy_property`` is removed.
* For consistency with non-multipart requests, ``MultiPartParser.parse()`` now
leaves ``request.POST`` immutable. If you're modifying that ``QueryDict``,
you must now first copy it, e.g. ``request.POST.copy()``.
.. _deprecated-features-1.11:
Features deprecated in 1.11